From 382435d0ba4575d5b24d672e1b1c9e8f076b5295 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jochen=20Sta=CC=88rk?= Date: Thu, 6 Aug 2020 15:59:06 +0200 Subject: [PATCH] Be able to validate XR 2.0 and 1.2 --- .../validator/XMLValidator.java | 502 +- .../XR_12/CII/XRechnung-CII-model.part | 61 + .../XR_12/XRechnung-CII-validation.sch | 38 + .../XR_12/abstract/XRechnung-model.part | 59 + .../XRechnung-CII-validation.xslt | 2 +- .../XRechnung-CII-validation.xslt | 0 .../schematron/ZF_211/FACTUR-X_BASIC-WL.xslt | 30800 ----- .../schematron/ZF_211/FACTUR-X_BASIC.xslt | 37766 ----- .../schematron/ZF_211/FACTUR-X_EN16931.xslt | 50242 ------- .../schematron/ZF_211/FACTUR-X_EXTENDED.xslt | 106438 --------------- .../schematron/ZF_211/FACTUR-X_MINIMUM.xslt | 14205 -- .../validator/XMLValidatorTest.java | 21 + 12 files changed, 435 insertions(+), 239699 deletions(-) create mode 100644 validator/src/main/resources/schematron/XR_12/CII/XRechnung-CII-model.part create mode 100644 validator/src/main/resources/schematron/XR_12/XRechnung-CII-validation.sch create mode 100644 validator/src/main/resources/schematron/XR_12/abstract/XRechnung-model.part rename validator/src/main/resources/xslt/{schematron/XR => XR_12}/XRechnung-CII-validation.xslt (99%) rename validator/src/main/resources/xslt/{XR => XR_20}/XRechnung-CII-validation.xslt (100%) delete mode 100644 validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_BASIC-WL.xslt delete mode 100644 validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_BASIC.xslt delete mode 100644 validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_EN16931.xslt delete mode 100644 validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_EXTENDED.xslt delete mode 100644 validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_MINIMUM.xslt diff --git a/validator/src/main/java/org/mustangproject/validator/XMLValidator.java b/validator/src/main/java/org/mustangproject/validator/XMLValidator.java index 3f874d53..c40c881b 100644 --- a/validator/src/main/java/org/mustangproject/validator/XMLValidator.java +++ b/validator/src/main/java/org/mustangproject/validator/XMLValidator.java @@ -34,17 +34,17 @@ import org.xml.sax.InputSource; public class XMLValidator extends Validator { - private static final Logger LOGGER = LoggerFactory.getLogger(XMLValidator.class.getCanonicalName()); // log output - // is - // ignored for the - // time being + private static final Logger LOGGER = LoggerFactory.getLogger(XMLValidator.class.getCanonicalName()); // log output + // is + // ignored for the + // time being - protected String zfXML = ""; - protected String filename = ""; - int firedRules = 0; - int failedRules = 0; - boolean disableNotices=false; - ISchematronResource aResSCH = null; + protected String zfXML = ""; + protected String filename = ""; + int firedRules = 0; + int failedRules = 0; + boolean disableNotices = false; + ISchematronResource aResSCH = null; public XMLValidator(ValidationContext ctx) { @@ -52,162 +52,163 @@ public class XMLValidator extends Validator { } public void setFilename(String name) throws IrrecoverableValidationError { // from XML Filename - filename = name; - // file existence must have been checked before + filename = name; + // file existence must have been checked before - try { - zfXML = new String(Files.readAllBytes(Paths.get(name))); - } catch (IOException e) { + try { + zfXML = new String(Files.readAllBytes(Paths.get(name))); + } catch (IOException e) { - ValidationResultItem vri = new ValidationResultItem(ESeverity.exception, e.getMessage()).setSection(9) - .setPart(EPart.fx); - StringWriter sw = new StringWriter(); - PrintWriter pw = new PrintWriter(sw); - e.printStackTrace(pw); - vri.setStacktrace(sw.toString()); - context.addResultItem(vri); - } - } + ValidationResultItem vri = new ValidationResultItem(ESeverity.exception, e.getMessage()).setSection(9) + .setPart(EPart.fx); + StringWriter sw = new StringWriter(); + PrintWriter pw = new PrintWriter(sw); + e.printStackTrace(pw); + vri.setStacktrace(sw.toString()); + context.addResultItem(vri); + } + } - public void setStringContent(String xml) { - zfXML = xml; - } + public void setStringContent(String xml) { + zfXML = xml; + } - public static boolean matchesURI(String uri1, String uri2) { - return (uri1.equals(uri2) || uri1.startsWith(uri2 + "#")); - } + public static boolean matchesURI(String uri1, String uri2) { + return (uri1.equals(uri2) || uri1.startsWith(uri2 + "#")); + } /*** * don't report notices in validation report */ public void disableNotices() { - disableNotices=true; + disableNotices = true; } - /*** - * - * @param xmlString - * @param overrideProfileCheck - * if set to true, all ZF2 files will be checked against EN16931 - * schematron, since no other schematron is available - * @return - */ - @Override - public void validate() throws IrrecoverableValidationError { - long startXMLTime = Calendar.getInstance().getTimeInMillis(); - firedRules = 0; - failedRules = 0; + + /*** + * + * @param xmlString + * @param overrideProfileCheck + * if set to true, all ZF2 files will be checked against EN16931 + * schematron, since no other schematron is available + * @return + */ + @Override + public void validate() throws IrrecoverableValidationError { + long startXMLTime = Calendar.getInstance().getTimeInMillis(); + firedRules = 0; + failedRules = 0; - ByteArrayInputStream xmlByteInputStream = new ByteArrayInputStream(zfXML.getBytes(StandardCharsets.UTF_8)); + ByteArrayInputStream xmlByteInputStream = new ByteArrayInputStream(zfXML.getBytes(StandardCharsets.UTF_8)); - if (zfXML.isEmpty()) { - ValidationResultItem res = new ValidationResultItem(ESeverity.exception, - "XML data not found in " + filename - + ": did you specify a pdf or xml file and does the xml file contain an embedded XML file?") - .setSection(3); - context.addResultItem(res); + if (zfXML.isEmpty()) { + ValidationResultItem res = new ValidationResultItem(ESeverity.exception, + "XML data not found in " + filename + + ": did you specify a pdf or xml file and does the xml file contain an embedded XML file?") + .setSection(3); + context.addResultItem(res); - } else { + } else { - // final ISchematronResource aResSCH = - // SchematronResourceSCH.fromFile (new File("ZUGFeRD_1p0.scmt")); - // ... DOES work but is highly deprecated (and rightly so) because - // it takes 30-40min, + // final ISchematronResource aResSCH = + // SchematronResourceSCH.fromFile (new File("ZUGFeRD_1p0.scmt")); + // ... DOES work but is highly deprecated (and rightly so) because + // it takes 30-40min, - try { - ESeverity XrechnungSeverity=ESeverity.notice; - /*** - * private static final String VALID_SCHEMATRON = "test-sch/valid01.sch"; - * private static final String VALID_XMLINSTANCE = "test-xml/valid01.xml"; - * - * @Test public void testWriteValid () throws Exception { final Document aDoc = - * SchematronResourceSCH.fromClassPath (VALID_SCHEMATRON) - * .applySchematronValidation (new ClassPathResource (VALID_XMLINSTANCE)); - * - */ + try { + ESeverity XrechnungSeverity = ESeverity.notice; + /*** + * private static final String VALID_SCHEMATRON = "test-sch/valid01.sch"; + * private static final String VALID_XMLINSTANCE = "test-xml/valid01.xml"; + * + * @Test public void testWriteValid () throws Exception { final Document aDoc = + * SchematronResourceSCH.fromClassPath (VALID_SCHEMATRON) + * .applySchematronValidation (new ClassPathResource (VALID_XMLINSTANCE)); + * + */ - DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); - dbf.setNamespaceAware(true); // otherwise we can not act namespace independently, i.e. use - // document.getElementsByTagNameNS("*",... + DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); + dbf.setNamespaceAware(true); // otherwise we can not act namespace independently, i.e. use + // document.getElementsByTagNameNS("*",... - DocumentBuilder db = dbf.newDocumentBuilder(); + DocumentBuilder db = dbf.newDocumentBuilder(); - Document doc = db.parse(xmlByteInputStream); + Document doc = db.parse(xmlByteInputStream); - Element root = doc.getDocumentElement(); + Element root = doc.getDocumentElement(); - NodeList ndList; + NodeList ndList; - // rootNode = document.getDocumentElement(); - // ApplicableSupplyChainTradeSettlement + // rootNode = document.getDocumentElement(); + // ApplicableSupplyChainTradeSettlement - // Create XPathFactory object - XPathFactory xpathFactory = XPathFactory.newInstance(); + // Create XPathFactory object + XPathFactory xpathFactory = XPathFactory.newInstance(); - // Create XPath object - XPath xpath = xpathFactory.newXPath(); - XPathExpression expr = xpath.compile( - "//*[local-name()=\"GuidelineSpecifiedDocumentContextParameter\"]/*[local-name()=\"ID\"]/text()"); - // evaluate expression result on XML document - ndList = (NodeList) expr.evaluate(doc, XPathConstants.NODESET); + // Create XPath object + XPath xpath = xpathFactory.newXPath(); + XPathExpression expr = xpath.compile( + "//*[local-name()=\"GuidelineSpecifiedDocumentContextParameter\"]/*[local-name()=\"ID\"]/text()"); + // evaluate expression result on XML document + ndList = (NodeList) expr.evaluate(doc, XPathConstants.NODESET); - for (int bookingIndex = 0; bookingIndex < ndList.getLength(); bookingIndex++) { - Node booking = ndList.item(bookingIndex); - // if there is a attribute in the tag number:value - // urn:ferd:CrossIndustryDocument:invoice:1p0:extended - // setForeignReference(booking.getTextContent()); + for (int bookingIndex = 0; bookingIndex < ndList.getLength(); bookingIndex++) { + Node booking = ndList.item(bookingIndex); + // if there is a attribute in the tag number:value + // urn:ferd:CrossIndustryDocument:invoice:1p0:extended + // setForeignReference(booking.getTextContent()); - context.setProfile(booking.getNodeValue()); - } - boolean isMiniumum = false; - boolean isBasic = false; - boolean isBasicWithoutLines = false; - boolean isEN16931 = false; + context.setProfile(booking.getNodeValue()); + } + boolean isMiniumum = false; + boolean isBasic = false; + boolean isBasicWithoutLines = false; + boolean isEN16931 = false; boolean isExtended = false; boolean isXRechnung = false; String xsltFilename = null; // urn:ferd:CrossIndustryDocument:invoice:1p0:extended, - // urn:ferd:CrossIndustryDocument:invoice:1p0:comfort, - // urn:ferd:CrossIndustryDocument:invoice:1p0:basic, + // urn:ferd:CrossIndustryDocument:invoice:1p0:comfort, + // urn:ferd:CrossIndustryDocument:invoice:1p0:basic, - // urn:cen.eu:en16931:2017 - // urn:cen.eu:en16931:2017:compliant:factur-x.eu:1p0:basic - if (root.getNodeName().equalsIgnoreCase("rsm:CrossIndustryInvoice")) { // ZUGFeRD 2.0 or Factur-X - context.setVersion("2"); + // urn:cen.eu:en16931:2017 + // urn:cen.eu:en16931:2017:compliant:factur-x.eu:1p0:basic + if (root.getNodeName().equalsIgnoreCase("rsm:CrossIndustryInvoice")) { // ZUGFeRD 2.0 or Factur-X + context.setVersion("2"); - isMiniumum = context.getProfile().contains("minimum"); - isBasic = context.getProfile().contains("basic"); - isBasicWithoutLines = context.getProfile().contains("basicwl"); - if (isBasicWithoutLines) { - isBasic = false;// basicwl also contains the string basic... - } - isEN16931 = matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017:compliant:factur-x.eu:1p0:en16931") - || matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017"); + isMiniumum = context.getProfile().contains("minimum"); + isBasic = context.getProfile().contains("basic"); + isBasicWithoutLines = context.getProfile().contains("basicwl"); + if (isBasicWithoutLines) { + isBasic = false;// basicwl also contains the string basic... + } + isEN16931 = matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017:compliant:factur-x.eu:1p0:en16931") + || matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017"); isExtended = context.getProfile().contains("extended"); isXRechnung = context.getProfile().contains("xrechnung"); - if ((isExtended)||(isXRechnung)) { - isEN16931 = false;// the uri for extended is urn:cen.eu:en16931:2017#conformant#urn:zugferd.de:2p0:extended and thus contains en16931... - } - if (isMiniumum) { - LOGGER.debug("is Minimum"); - validateSchema(zfXML.getBytes(StandardCharsets.UTF_8), "zf2/MINIMUM/FACTUR-X_MINIMUM.xsd", 18, EPart.fx); - xsltFilename = "/xslt/ZF_211/FACTUR-X_MINIMUM.xslt"; - } else if (isBasicWithoutLines) { - LOGGER.debug("is Basic/WL"); - validateSchema(zfXML.getBytes(StandardCharsets.UTF_8), "zf2/BASIC-WL/FACTUR-X_BASIC-WL.xsd", 18, EPart.fx); - xsltFilename = "/xslt/ZF_211/FACTUR-X_BASIC-WL.xslt"; - } else if (isBasic) { - LOGGER.debug("is Basic"); - validateSchema(zfXML.getBytes(StandardCharsets.UTF_8), "zf2/BASIC/FACTUR-X_BASIC.xsd", 18, EPart.fx); - xsltFilename = "/xslt/ZF_211/FACTUR-X_BASIC.xslt"; - } else if (isEN16931) { - LOGGER.debug("is EN16931"); - validateSchema(zfXML.getBytes(StandardCharsets.UTF_8), "zf2/EN16931/FACTUR-X_EN16931.xsd", 18, EPart.fx); - xsltFilename = "/xslt/ZF_211/FACTUR-X_EN16931.xslt"; - } else if (isExtended) { + if ((isExtended) || (isXRechnung)) { + isEN16931 = false;// the uri for extended is urn:cen.eu:en16931:2017#conformant#urn:zugferd.de:2p0:extended and thus contains en16931... + } + if (isMiniumum) { + LOGGER.debug("is Minimum"); + validateSchema(zfXML.getBytes(StandardCharsets.UTF_8), "zf2/MINIMUM/FACTUR-X_MINIMUM.xsd", 18, EPart.fx); + xsltFilename = "/xslt/ZF_211/FACTUR-X_MINIMUM.xslt"; + } else if (isBasicWithoutLines) { + LOGGER.debug("is Basic/WL"); + validateSchema(zfXML.getBytes(StandardCharsets.UTF_8), "zf2/BASIC-WL/FACTUR-X_BASIC-WL.xsd", 18, EPart.fx); + xsltFilename = "/xslt/ZF_211/FACTUR-X_BASIC-WL.xslt"; + } else if (isBasic) { + LOGGER.debug("is Basic"); + validateSchema(zfXML.getBytes(StandardCharsets.UTF_8), "zf2/BASIC/FACTUR-X_BASIC.xsd", 18, EPart.fx); + xsltFilename = "/xslt/ZF_211/FACTUR-X_BASIC.xslt"; + } else if (isEN16931) { + LOGGER.debug("is EN16931"); + validateSchema(zfXML.getBytes(StandardCharsets.UTF_8), "zf2/EN16931/FACTUR-X_EN16931.xsd", 18, EPart.fx); + xsltFilename = "/xslt/ZF_211/FACTUR-X_EN16931.xslt"; + } else if (isExtended) { LOGGER.debug("is EXTENDED"); validateSchema(zfXML.getBytes(StandardCharsets.UTF_8), "zf2/EXTENDED/FACTUR-X_EXTENDED.xsd", 18, EPart.fx); xsltFilename = "/xslt/ZF_211/FACTUR-X_EXTENDED.xslt"; @@ -215,155 +216,162 @@ public class XMLValidator extends Validator { LOGGER.debug("is XRechnung"); validateSchema(zfXML.getBytes(StandardCharsets.UTF_8), "zf2/EXTENDED/FACTUR-X_EXTENDED.xsd", 18, EPart.fx); xsltFilename = "/xslt/ZF_211/FACTUR-X_EN16931.xslt"; - XrechnungSeverity=ESeverity.error; + XrechnungSeverity = ESeverity.error; } /* - * ISchematronResource aResSCH = SchematronResourceXSLT.fromFile(new File( - * "/Users/jstaerk/workspace/ZUV/src/main/resources/ZUGFeRDSchematronStylesheet.xsl" - * )); - */ + * ISchematronResource aResSCH = SchematronResourceXSLT.fromFile(new File( + * "/Users/jstaerk/workspace/ZUV/src/main/resources/ZUGFeRDSchematronStylesheet.xsl" + * )); + */ - // takes around 10 Seconds. // - // http://www.bentoweb.org/refs/TCDL2.0/tsdtf_schematron.html // explains that - // this xslt can be created using sth like - // saxon java net.sf.saxon.Transform -o tcdl2.0.tsdtf.sch.tmp.xsl -s - // tcdl2.0.tsdtf.sch iso_svrl.xsl + // takes around 10 Seconds. // + // http://www.bentoweb.org/refs/TCDL2.0/tsdtf_schematron.html // explains that + // this xslt can be created using sth like + // saxon java net.sf.saxon.Transform -o tcdl2.0.tsdtf.sch.tmp.xsl -s + // tcdl2.0.tsdtf.sch iso_svrl.xsl - } else { // ZUGFeRD 1.0 - context.setVersion("1"); - // - if ((!matchesURI(context.getProfile(), "urn:ferd:CrossIndustryDocument:invoice:1p0:basic")) - && (!matchesURI(context.getProfile(), "urn:ferd:CrossIndustryDocument:invoice:1p0:comfort")) - && (!matchesURI(context.getProfile(), "urn:ferd:CrossIndustryDocument:invoice:1p0:extended"))) { - context.addResultItem(new ValidationResultItem(ESeverity.error, "Unsupported profile type") - .setSection(25).setPart(EPart.fx)); - } - validateSchema(zfXML.getBytes(StandardCharsets.UTF_8), "zf1/ZUGFeRD1p0.xsd", 18, EPart.fx); + } else { // ZUGFeRD 1.0 + context.setVersion("1"); + // + if ((!matchesURI(context.getProfile(), "urn:ferd:CrossIndustryDocument:invoice:1p0:basic")) + && (!matchesURI(context.getProfile(), "urn:ferd:CrossIndustryDocument:invoice:1p0:comfort")) + && (!matchesURI(context.getProfile(), "urn:ferd:CrossIndustryDocument:invoice:1p0:extended"))) { + context.addResultItem(new ValidationResultItem(ESeverity.error, "Unsupported profile type") + .setSection(25).setPart(EPart.fx)); + } + validateSchema(zfXML.getBytes(StandardCharsets.UTF_8), "zf1/ZUGFeRD1p0.xsd", 18, EPart.fx); - xsltFilename = "/xslt/ZUGFeRD_1p0.xslt"; - } - if (context.getVersion().equals("2")) { - if ((!matchesURI(context.getProfile(), "urn:factur-x.eu:1p0:minimum")) - && (!matchesURI(context.getProfile(), "urn:zugferd.de:2p0:minimum")) - && (!matchesURI(context.getProfile(), "urn:factur-x.eu:1p0:basicwl")) - && (!matchesURI(context.getProfile(), "urn:zugferd.de:2p0:basicwl")) - && (!matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017#compliant#urn:factur-x.eu:1p0:basic")) - && (!matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017#compliant#urn:zugferd.de:2p0:basic")) - && (!matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017")) - && (!matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017#conformant#urn:factur-x.eu:1p0:extended")) - && (!matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017#conformant#urn:zugferd.de:2p0:extended"))) { - context.addResultItem( - new ValidationResultItem(ESeverity.error, "Unsupported profile type " + context.getProfile()) - .setSection(25).setPart(EPart.fx)); + xsltFilename = "/xslt/ZUGFeRD_1p0.xslt"; + } + if (context.getVersion().equals("2")) { + if ((!matchesURI(context.getProfile(), "urn:factur-x.eu:1p0:minimum")) + && (!matchesURI(context.getProfile(), "urn:zugferd.de:2p0:minimum")) + && (!matchesURI(context.getProfile(), "urn:factur-x.eu:1p0:basicwl")) + && (!matchesURI(context.getProfile(), "urn:zugferd.de:2p0:basicwl")) + && (!matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017#compliant#urn:factur-x.eu:1p0:basic")) + && (!matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017#compliant#urn:zugferd.de:2p0:basic")) + && (!matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017")) + && (!matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017#conformant#urn:factur-x.eu:1p0:extended")) + && (!matchesURI(context.getProfile(), "urn:cen.eu:en16931:2017#conformant#urn:zugferd.de:2p0:extended"))) { + context.addResultItem( + new ValidationResultItem(ESeverity.error, "Unsupported profile type " + context.getProfile()) + .setSection(25).setPart(EPart.fx)); - } - } else /** v1 */ {//urn:ferd:invoice:rc:comfort - if ((!matchesURI(context.getProfile(), "urn:ferd:CrossIndustryDocument:invoice:1p0:basic")) - && (!matchesURI(context.getProfile(), "urn:ferd:CrossIndustryDocument:invoice:1p0:comfort")) - && (!matchesURI(context.getProfile(), "urn:ferd:CrossIndustryDocument:invoice:1p0:extended"))) { - context.addResultItem(new ValidationResultItem(ESeverity.error, "Unsupported profile type") - .setSection(25).setPart(EPart.fx)); + } + } else /** v1 */ {//urn:ferd:invoice:rc:comfort + if ((!matchesURI(context.getProfile(), "urn:ferd:CrossIndustryDocument:invoice:1p0:basic")) + && (!matchesURI(context.getProfile(), "urn:ferd:CrossIndustryDocument:invoice:1p0:comfort")) + && (!matchesURI(context.getProfile(), "urn:ferd:CrossIndustryDocument:invoice:1p0:extended"))) { + context.addResultItem(new ValidationResultItem(ESeverity.error, "Unsupported profile type") + .setSection(25).setPart(EPart.fx)); - } - } + } + } - // main schematron validation - validateSchematron(zfXML, xsltFilename, 4, ESeverity.error); + // main schematron validation + validateSchematron(zfXML, xsltFilename, 4, ESeverity.error); - if (context.getVersion().equals("2") - && (isEN16931 || isXRechnung)) { - //additionally validate against CEN - validateSchematron(zfXML, "/xslt/cii16931schematron/EN16931-CII-validation.xslt", 24, ESeverity.error); - if (!disableNotices||XrechnungSeverity!=ESeverity.notice) { + if (context.getVersion().equals("2") + && (isEN16931 || isXRechnung)) { + //additionally validate against CEN + validateSchematron(zfXML, "/xslt/cii16931schematron/EN16931-CII-validation.xslt", 24, ESeverity.error); + if (!disableNotices || XrechnungSeverity != ESeverity.notice) { validateXR(zfXML, XrechnungSeverity); } - } + } - } catch (IrrecoverableValidationError er) { - throw er; - } catch (Exception e) { - ValidationResultItem vri = new ValidationResultItem(ESeverity.exception, e.getMessage()).setSection(22) - .setPart(EPart.fx); - StringWriter sw = new StringWriter(); - PrintWriter pw = new PrintWriter(sw); - e.printStackTrace(pw); - vri.setStacktrace(sw.toString()); - context.addResultItem(vri); - } + } catch (IrrecoverableValidationError er) { + throw er; + } catch (Exception e) { + ValidationResultItem vri = new ValidationResultItem(ESeverity.exception, e.getMessage()).setSection(22) + .setPart(EPart.fx); + StringWriter sw = new StringWriter(); + PrintWriter pw = new PrintWriter(sw); + e.printStackTrace(pw); + vri.setStacktrace(sw.toString()); + context.addResultItem(vri); + } - } - long endTime = Calendar.getInstance().getTimeInMillis(); + } + long endTime = Calendar.getInstance().getTimeInMillis(); - context.addCustomXML("" + ((context.getVersion() != null) ? context.getVersion() : "invalid") - + "" + ((context.getProfile() != null) ? context.getProfile() : "invalid") + - "" + firedRules + "" + failedRules + "" + "" + (endTime - startXMLTime) + ""); + context.addCustomXML("" + ((context.getVersion() != null) ? context.getVersion() : "invalid") + + "" + ((context.getProfile() != null) ? context.getProfile() : "invalid") + + "" + firedRules + "" + failedRules + "" + "" + (endTime - startXMLTime) + ""); - } + } - public void validateXR(String xml, ESeverity errorImpact) throws IrrecoverableValidationError { + public void validateXR(String xml, ESeverity errorImpact) throws IrrecoverableValidationError { - validateSchematron(xml, "/xslt/XR/XRechnung-CII-validation.xslt",27, errorImpact); + //Guideline ID=urn:cen.eu:en16931:2017#compliant#urn:xoev-de:kosit:standard:xrechnung_1.2 or + if (xml.contains(":xrechnung_1.")) { + // urn:cen.eu:en16931:2017#compliant#urn:xoev-dede:kosit:standard:xrechnung_2.0#conformant#urn:xoev-de:kosit:extension:xrechnung_2.0 + validateSchematron(xml, "/xslt/XR_12/XRechnung-CII-validation.xslt", 27, errorImpact); + } else { + // urn:cen.eu:en16931:2017#compliant#urn:xoev-dede:kosit:standard:xrechnung_2.0#conformant#urn:xoev-de:kosit:extension:xrechnung_2.0 + validateSchematron(xml, "/xslt/XR_20/XRechnung-CII-validation.xslt", 27, errorImpact); + } - } + } - public void validateSchematron(String xml, String xsltFilename, int section, ESeverity severity) throws IrrecoverableValidationError { - ISchematronResource aResSCH = null; - aResSCH = SchematronResourceXSLT.fromClassPath(xsltFilename); - if (aResSCH != null) { - if (!aResSCH.isValidSchematron()) { - throw new IllegalArgumentException(xsltFilename + " is invalid Schematron!"); - } + public void validateSchematron(String xml, String xsltFilename, int section, ESeverity severity) throws IrrecoverableValidationError { + ISchematronResource aResSCH = null; + aResSCH = SchematronResourceXSLT.fromClassPath(xsltFilename); + if (aResSCH != null) { + if (!aResSCH.isValidSchematron()) { + throw new IllegalArgumentException(xsltFilename + " is invalid Schematron!"); + } - SchematronOutputType sout; - try { - sout = aResSCH - .applySchematronValidationToSVRL(new StreamSource(new StringReader(xml))); - } catch (Exception e) { - throw new IrrecoverableValidationError(e.getMessage()); - } + SchematronOutputType sout; + try { + sout = aResSCH + .applySchematronValidationToSVRL(new StreamSource(new StringReader(xml))); + } catch (Exception e) { + throw new IrrecoverableValidationError(e.getMessage()); + } - List failedAsserts = sout.getActivePatternAndFiredRuleAndFailedAssert(); - if (failedAsserts.size() > 0) { - for (Object object : failedAsserts) { - if (object instanceof FailedAssert) { + List failedAsserts = sout.getActivePatternAndFiredRuleAndFailedAssert(); + if (failedAsserts.size() > 0) { + for (Object object : failedAsserts) { + if (object instanceof FailedAssert) { - FailedAssert failedAssert = (FailedAssert) object; - LOGGER.info("FailedAssert ", failedAssert); + FailedAssert failedAssert = (FailedAssert) object; + LOGGER.info("FailedAssert ", failedAssert); - context.addResultItem(new ValidationResultItem(severity, SVRLHelper.getAsString(failedAssert.getText())) - .setLocation(failedAssert.getLocation()).setCriterion(failedAssert.getTest()).setSection(section) - .setPart(EPart.fx)); - failedRules++; - } else if (object instanceof FiredRule) { - firedRules++; - } - } + context.addResultItem(new ValidationResultItem(severity, SVRLHelper.getAsString(failedAssert.getText())) + .setLocation(failedAssert.getLocation()).setCriterion(failedAssert.getTest()).setSection(section) + .setPart(EPart.fx)); + failedRules++; + } else if (object instanceof FiredRule) { + firedRules++; + } + } - } - if (firedRules == 0) { - context.addResultItem(new ValidationResultItem(ESeverity.error, "No rules matched, XML to minimal?").setSection(26) - .setPart(EPart.fx)); + } + if (firedRules == 0) { + context.addResultItem(new ValidationResultItem(ESeverity.error, "No rules matched, XML to minimal?").setSection(26) + .setPart(EPart.fx)); - } - // for (String currentString : sout.getText()) { - // schematronValidationString += "" + currentString + ""; - // } + } + // for (String currentString : sout.getText()) { + // schematronValidationString += "" + currentString + ""; + // } - // schematronValidationString += new SVRLMarshaller ().getAsString (sout); - // returns the complete SVRL + // schematronValidationString += new SVRLMarshaller ().getAsString (sout); + // returns the complete SVRL - } - } + } + } - public int getFiredRules() { - return firedRules; - } + public int getFiredRules() { + return firedRules; + } - public int getFailedRules() { - return failedRules; - } + public int getFailedRules() { + return failedRules; + } } diff --git a/validator/src/main/resources/schematron/XR_12/CII/XRechnung-CII-model.part b/validator/src/main/resources/schematron/XR_12/CII/XRechnung-CII-model.part new file mode 100644 index 00000000..f7bf177c --- /dev/null +++ b/validator/src/main/resources/schematron/XR_12/CII/XRechnung-CII-model.part @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/validator/src/main/resources/schematron/XR_12/XRechnung-CII-validation.sch b/validator/src/main/resources/schematron/XR_12/XRechnung-CII-validation.sch new file mode 100644 index 00000000..56465ad8 --- /dev/null +++ b/validator/src/main/resources/schematron/XR_12/XRechnung-CII-validation.sch @@ -0,0 +1,38 @@ + + + + Schematron Version 1.3.0 - XRechnung + 1.2.2 compatible - CII + + + + + + + + + + + + + + + + + + + + + diff --git a/validator/src/main/resources/schematron/XR_12/abstract/XRechnung-model.part b/validator/src/main/resources/schematron/XR_12/abstract/XRechnung-model.part new file mode 100644 index 00000000..67651071 --- /dev/null +++ b/validator/src/main/resources/schematron/XR_12/abstract/XRechnung-model.part @@ -0,0 +1,59 @@ + + + [BR-DE-1] Eine Rechnung (INVOICE) muss Angaben zu "PAYMENT INSTRUCTIONS" (BG-16) enthalten. + [BR-DE-13] In der Rechnung müssen Angaben zu genau einer der drei Gruppen "CREDIT TRANSFER" (BG-17), "PAYMENT CARD INFORMATION" (BG-18) oder "DIRECT DEBIT" (BG-19) übermittelt werden. + [BR-DE-15] Das Element "Buyer reference" (BT-10) muss übermittelt werden. + [BR-DE-16] In der Rechnung muss mindestens eines der Elemente "Seller VAT identifier" (BT-31), "Seller tax registration identifier" (BT-32) oder "SELLER TAX REPRESENTATIVE PARTY" (BG-11) übermittelt werden. + [BR-DE-17] Mit dem Element "Invoice type code" (BT-3) sollen ausschließlich folgende Codes aus der Codeliste UNTDID 1001 übermittelt werden: 326 (Partial invoice), 380 (Commercial invoice), 384 (Corrected invoice), 389 (Self-billed invoice) und 381 (Credit note),875 (Partial construction invoice), 876 (Partial final construction invoice), 877 (Final construction invoice). + [BR-DE-18] Die Informationen zur Gewährung von Skonto oder zur Berechnung von Verzugszinsen müssen wie folgt im Element "Payment terms" (BT-20) übermittelt werden: Anzugeben ist im ersten Segment "SKONTO" oder "VERZUG", im zweiten "TAGE=n", im dritten "PROZENT=n". Prozentzahlen sind ohne Vorzeichen sowie mit Punkt getrennt von zwei Nachkommastellen anzugeben. Liegt dem zu berechnenden Betrag nicht BT-115, "fälliger Betrag" zugrunde, sondern nur ein Teil des fälligen Betrags der Rechnung, ist der Grundwert zur Berechnung von Skonto oder Verzugszins als viertes Segment "BASISBETRAG=n" gemäß dem semantischen Datentypen Amount anzugeben. Jeder Eintrag beginnt mit einer #, die Segmente sind mit einer # getrennt und eine Zeile schließt mit einer # ab. Am Ende einer vollständigen Skonto oder Verzugsangabe muss ein XML-konformer Zeilenumbruch folgen. Alle Angaben zur Gewährung von Skonto oder zur Berechnung von Verzugszinsen müssen in Großbuchstaben gemacht werden. Zusätzliches Whitespace (Leerzeichen, Tabulatoren oder Zeilenumbrüche) ist nicht zulässig. Andere Zeichen oder Texte als in den oberen Vorgaben genannt sind nicht zulässig. + + + [BR-DE-21] Das Element "Specification identifier" (BT-24) soll syntaktisch der Kennung des Standards XRechnung entsprechen. + + + [BR-DE-2] Die Gruppe "SELLER CONTACT" (BG-6) muss übermittelt werden. + + + [BR-DE-3] Das Element "Seller city" (BT-37) muss übermittelt werden. + [BR-DE-4] Das Element "Seller post code" (BT-38) muss übermittelt werden. + + + [BR-DE-5] Das Element "Seller contact point" (BT-41) muss übermittelt werden. + [BR-DE-6] Das Element "Seller contact telephone number" (BT-42) muss übermittelt werden. + [BR-DE-7] Das Element "Seller contact email address" (BT-43) muss übermittelt werden. + + + [BR-DE-8] Das Element "Buyer city" (BT-52) muss übermittelt werden. + [BR-DE-9] Das Element "Buyer post code" (BT-53) muss übermittelt werden. + + + [BR-DE-10] Das Element "Deliver to city" (BT-77) muss übermittelt werden, wenn die Gruppe "DELIVER TO ADDRESS" (BG-15) übermittelt wird. + [BR-DE-11] Das Element "Deliver to post code" (BT-78) muss übermittelt werden, wenn die Gruppe "DELIVER TO ADDRESS" (BG-15) übermittelt wird. + + + [BR-DE-19] "Payment account identifier" (BT-84) soll eine korrekte IBAN enthalten, wenn in "Payment means type code" (BT-81) mit dem Code 58 SEPA als Zahlungsmittel gefordert wird. + [BR-DE-20] "Debited account identifier" (BT-91) soll eine korrekte IBAN enthalten, wenn in "Payment means type code" (BT-81) mit dem Code 59 SEPA als Zahlungsmittel gefordert wird. + + + [BR-DE-14] Das Element "VAT category rate" (BT-119) muss übermittelt werden. + + diff --git a/validator/src/main/resources/xslt/schematron/XR/XRechnung-CII-validation.xslt b/validator/src/main/resources/xslt/XR_12/XRechnung-CII-validation.xslt similarity index 99% rename from validator/src/main/resources/xslt/schematron/XR/XRechnung-CII-validation.xslt rename to validator/src/main/resources/xslt/XR_12/XRechnung-CII-validation.xslt index b34a5489..91b3f2e3 100644 --- a/validator/src/main/resources/xslt/schematron/XR/XRechnung-CII-validation.xslt +++ b/validator/src/main/resources/xslt/XR_12/XRechnung-CII-validation.xslt @@ -1,4 +1,4 @@ - + diff --git a/validator/src/main/resources/xslt/XR/XRechnung-CII-validation.xslt b/validator/src/main/resources/xslt/XR_20/XRechnung-CII-validation.xslt similarity index 100% rename from validator/src/main/resources/xslt/XR/XRechnung-CII-validation.xslt rename to validator/src/main/resources/xslt/XR_20/XRechnung-CII-validation.xslt diff --git a/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_BASIC-WL.xslt b/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_BASIC-WL.xslt deleted file mode 100644 index 121c710c..00000000 --- a/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_BASIC-WL.xslt +++ /dev/null @@ -1,30800 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - [] - - - *[local-name()=' - - '] - - [] - - - - - / - - @ - - - @*[local-name()=' - - ' and namespace-uri()=' - - '] - - - - - - - - - / - - - [ - - ] - - - - /@ - - - - - - - - / - - - [ - - ] - - - - /@ - - - - - - - - - - - - - - - - - - - - - - - - . - - - - -U - - U - - - - U. - - n - - - - U. - - _ - - _ - - - - - - - - -   -   -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Schema for FACTUR-X; 1.0; ACCOUNTING INFORMATION, No XML Invoice, (BASIC WITHOUT LINE) - - - - - - - - - - - - - - - - - - Each Additional supporting document (BG-24) shall contain a Supporting document reference (BT-122). - - - - - - - - - - - - - - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. - - - - - - - - - - - - - - Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. - - - - - - - - - - - - - - VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. - - - - - - - - - - - - - - The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amount (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Zero rated". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). - - - - - - - - - - - - - - If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). - - - - - - - - - - - - - - Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). - - - - - - - - - - - - - - Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. - - - - - - - - - - - - - - Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level charge amount (BT-92) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level charge base amount (BT-93) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). - - - - - - - - - - - - - - - - - - - - - - - - - - - The last 4 to 6 digits of the Payment card primary account number (BT-87) shall be present if Payment card information (BG-18) is provided in the Invoice. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). - - - - - - - - - - - - - - An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall contain the Item name (BT-153). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall contain the Item net price (BT-146). - - - - - - - - - - - - - - The Item net price (BT-146) shall NOT be negative. - - - - - - - - - - - - - - The Item gross price (BT-148) shall NOT be negative. - - - - - - - - - - - - - - The Item standard identifier (BT-157) shall have a Scheme identifier - - - - - - - - - - - - - - The Item classification identifier (BT-158) shall have a Scheme identifier - - - - - - - - - - - - - - Each Invoice line (BG-25) shall be categorized with an Invoiced item VAT category code (BT-151). - - - - - - - - - - - - - - An Invoice shall at least have one VAT breakdown group (BG-23). - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line net amount (BT-131) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). - - - - - - - - - - - - - - - - - - - - - - - - - - - The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - - - - - - - - - - - - - - In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. - - - - - - - - - - - - - - - - - - - - - - - - - - - If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). - - - - - - - - - - - - - - If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). - - - - - - - - - - - - - - Invoice line allowance reason code (BT-140) and Invoice line allowance reason (BT-139) shall indicate the same type of allowance reason. - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line allowance amount (BT-136) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line allowance base amount (BT-137) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). - - - - - - - - - - - - - - Invoice line charge reason code (BT-145) and Invoice line charge reason (BT144) shall indicate the same type of charge reason. - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line charge amount (BT-141) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line charge base amount (BT-142) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice shall have the Invoice total amount without VAT (BT-109). - - - - - - - - - - - - - - An Invoice shall have the Invoice total amount with VAT (BT-112). - - - - - - - - - - - - - - An Invoice shall have the Amount due for payment (BT-115). - - - - - - - - - - - - - - Sum of allowances on document level (BT-107) = S Document level allowance amount (BT-92). - - - - - - - - - - - - - - Sum of charges on document level (BT-108) = S Document level charge amount (BT-99). - - - - - - - - - - - - - - Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Paid amount (BT-113) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. - - - - - - - - - - - - - - If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. - - - - - - - - - - - - - - Invoice total amount without VAT (BT-109) = S Invoice line net amount (BT-131) - Sum of allowances on document level (BT-107) + Sum of charges on document level (BT-108). - - - - - - - - - - - - - - Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). - - - - - - - - - - - - - - An Invoice shall have the Sum of Invoice line net amount (BT-106). - - - - - - - - - - - - - - - - - - - - - - - - - - - Invoice total VAT amount (BT-110) = S VAT category tax amount (BT-117). - - - - - - - - - - - - - - - - - - - - - - - - - - - A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). - - - - - - - - - - - - - - - - - - - - - - - - - - - A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. - - - - - - - - - - - - - - If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Reverse charge". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Reverse charge” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). - - - - - - - - - - - - - - - - - - - - - - - - - - - The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Export outside the EU". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Export outside the EU” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Intra-community supply". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). - - - - - - - - - - - - - - In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. - - - - - - - - - - - - - - In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. - - - - - - - - - - - - - - - - - - - - - - - - - - - For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IGIC", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is “IGIC” and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IPSI", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is “IPSI” and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is " Not subject to VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Not subject to VAT". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Not subject to VAT” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is not "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-46). - - - - - - - - - - - - - - An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice shall have a Specification identifier (BT-24). - - - - - - - - - - - - - - An Invoice shall have an Invoice number (BT-1). - - - - - - - - - - - - - - An Invoice shall have an Invoice issue date (BT-2). - - - - - - - - - - - - - - An Invoice shall have an Invoice type code (BT-3). - - - - - - - - - - - - - - An Invoice shall have an Invoice currency code (BT-5). - - - - - - - - - - - - - - An Invoice shall contain the Seller name (BT-27). - - - - - - - - - - - - - - An Invoice shall contain the Buyer name (BT-44). - - - - - - - - - - - - - - An Invoice shall contain the Seller postal address (BG-5). - - - - - - - - - - - - - - The Seller postal address (BG-5) shall contain a Seller country code (BT-40). - - - - - - - - - - - - - - The Seller electronic address (BT-34) shall have a Scheme identifier. - - - - - - - - - - - - - - The Buyer electronic address (BT-49) shall have a Scheme identifier. - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Standard rated” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Zero rated” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Exempt from VAT” shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Reverse charge” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Intra-community supply” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Export outside the EU” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Not subject to VAT” shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “IGIC” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “IPSI” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". - - - - - - - - - - - - - - In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. - - - - - - - - - - - - - - An Invoice shall contain the Buyer postal address (BG-8). - - - - - - - - - - - - - - The Buyer postal address shall contain a Buyer country code (BT-55). - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ControlRequirementIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContentCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:SubjectCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LanguageID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Purpose' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VersionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicationSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BIMSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MessageStandardSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ScenarioSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTransactionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubsetSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TestIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerTradeParty' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:BuyerTradeParty' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerAgentTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerTaxRepresentativeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OrderResponseReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PriceListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductEndUserTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseConditionsReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Reference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesAgentTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedProcuringProject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SupplyInstructionReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimateCustomerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DescriptionBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EarliestOccurrenceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LatestOccurrenceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OccurrenceLogisticsLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OccurrenceSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeliveryNoteReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReceivingAdviceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GlobalID' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimateShipToTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentReference' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ApplicableTradeTax' must occur at least 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTradePaymentTerms' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:BasisAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:ExemptionReasonCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceIssuerID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceType' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DuePayableAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FactoringAgreementReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FactoringListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoicerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LetterOfCreditReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NextInvoiceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GlobalID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentCurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProFormaInvoiceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AmountTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CostReferenceDimensionPattern' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SetTriggerCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedAdvancePayment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryTradeTax' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradePaymentDiscountTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradePaymentPenaltyTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FromEventCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstructionTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PartialPaymentAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PartialPaymentPercent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayeeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentMeansID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SettlementPeriodMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TaxTotalAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GrandTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:DuePayableAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductValueExcludingTobaccoTaxInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RetailValueExcludingTaxInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoundingAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@currencyID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalDepositFeeInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalDiscountAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GuaranteeMethodCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AccountName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayeeSpecifiedCreditorFinancialInstitution' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IBANID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AccountName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProprietaryID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayerSpecifiedDebtorFinancialInstitution' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentMethodCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxCurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimatePayeeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSupplyChainTradeLineItem' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'rsm:ValuationBreakdownStatement' is marked as not used in the given context. - - - - - - - - - diff --git a/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_BASIC.xslt b/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_BASIC.xslt deleted file mode 100644 index 0be47271..00000000 --- a/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_BASIC.xslt +++ /dev/null @@ -1,37766 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - [] - - - *[local-name()=' - - '] - - [] - - - - - / - - @ - - - @*[local-name()=' - - ' and namespace-uri()=' - - '] - - - - - - - - - / - - - [ - - ] - - - - /@ - - - - - - - - / - - - [ - - ] - - - - /@ - - - - - - - - - - - - - - - - - - - - - - - - . - - - - -U - - U - - - - U. - - n - - - - U. - - _ - - _ - - - - - - - - -   -   -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Schema for FACTUR-X; 1.0; EN16931-COMPLIANT-BASIC - - - - - - - - - - - - - - - - - - Each Additional supporting document (BG-24) shall contain a Supporting document reference (BT-122). - - - - - - - - - - - - - - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. - - - - - - - - - - - - - - Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. - - - - - - - - - - - - - - VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. - - - - - - - - - - - - - - The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amount (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Zero rated". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). - - - - - - - - - - - - - - If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). - - - - - - - - - - - - - - Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). - - - - - - - - - - - - - - Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. - - - - - - - - - - - - - - Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level charge amount (BT-92) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level charge base amount (BT-93) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). - - - - - - - - - - - - - - - - - - - - - - - - - - - The last 4 to 6 digits of the Payment card primary account number (BT-87) shall be present if Payment card information (BG-18) is provided in the Invoice. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). - - - - - - - - - - - - - - An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall contain the Item name (BT-153). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall contain the Item net price (BT-146). - - - - - - - - - - - - - - The Item net price (BT-146) shall NOT be negative. - - - - - - - - - - - - - - The Item gross price (BT-148) shall NOT be negative. - - - - - - - - - - - - - - The Item standard identifier (BT-157) shall have a Scheme identifier - - - - - - - - - - - - - - The Item classification identifier (BT-158) shall have a Scheme identifier - - - - - - - - - - - - - - Each Invoice line (BG-25) shall be categorized with an Invoiced item VAT category code (BT-151). - - - - - - - - - - - - - - An Invoice shall at least have one VAT breakdown group (BG-23). - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line net amount (BT-131) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). - - - - - - - - - - - - - - - - - - - - - - - - - - - The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - - - - - - - - - - - - - - In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. - - - - - - - - - - - - - - - - - - - - - - - - - - - If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). - - - - - - - - - - - - - - If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). - - - - - - - - - - - - - - Invoice line allowance reason code (BT-140) and Invoice line allowance reason (BT-139) shall indicate the same type of allowance reason. - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line allowance amount (BT-136) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line allowance base amount (BT-137) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). - - - - - - - - - - - - - - Invoice line charge reason code (BT-145) and Invoice line charge reason (BT144) shall indicate the same type of charge reason. - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line charge amount (BT-141) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line charge base amount (BT-142) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice shall have the Invoice total amount without VAT (BT-109). - - - - - - - - - - - - - - An Invoice shall have the Invoice total amount with VAT (BT-112). - - - - - - - - - - - - - - An Invoice shall have the Amount due for payment (BT-115). - - - - - - - - - - - - - - Sum of allowances on document level (BT-107) = S Document level allowance amount (BT-92). - - - - - - - - - - - - - - Sum of charges on document level (BT-108) = S Document level charge amount (BT-99). - - - - - - - - - - - - - - Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Paid amount (BT-113) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. - - - - - - - - - - - - - - If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. - - - - - - - - - - - - - - Invoice total amount without VAT (BT-109) = S Invoice line net amount (BT-131) - Sum of allowances on document level (BT-107) + Sum of charges on document level (BT-108). - - - - - - - - - - - - - - Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). - - - - - - - - - - - - - - An Invoice shall have the Sum of Invoice line net amount (BT-106). - - - - - - - - - - - - - - - - - - - - - - - - - - - Invoice total VAT amount (BT-110) = S VAT category tax amount (BT-117). - - - - - - - - - - - - - - - - - - - - - - - - - - - A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). - - - - - - - - - - - - - - - - - - - - - - - - - - - A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. - - - - - - - - - - - - - - If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Reverse charge". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Reverse charge” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). - - - - - - - - - - - - - - - - - - - - - - - - - - - The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Exempt from VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Exempt from VAT". - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Export outside the EU". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Export outside the EU” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Intra-community supply". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). - - - - - - - - - - - - - - In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. - - - - - - - - - - - - - - In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. - - - - - - - - - - - - - - - - - - - - - - - - - - - For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IGIC", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is “IGIC” and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IPSI", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is “IPSI” and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is " Not subject to VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Not subject to VAT". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Not subject to VAT” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is not "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-46). - - - - - - - - - - - - - - An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice shall have a Specification identifier (BT-24). - - - - - - - - - - - - - - An Invoice shall have an Invoice number (BT-1). - - - - - - - - - - - - - - An Invoice shall have an Invoice issue date (BT-2). - - - - - - - - - - - - - - An Invoice shall have an Invoice type code (BT-3). - - - - - - - - - - - - - - An Invoice shall have an Invoice currency code (BT-5). - - - - - - - - - - - - - - An Invoice shall contain the Seller name (BT-27). - - - - - - - - - - - - - - An Invoice shall contain the Buyer name (BT-44). - - - - - - - - - - - - - - An Invoice shall contain the Seller postal address (BG-5). - - - - - - - - - - - - - - The Seller postal address (BG-5) shall contain a Seller country code (BT-40). - - - - - - - - - - - - - - The Seller electronic address (BT-34) shall have a Scheme identifier. - - - - - - - - - - - - - - The Buyer electronic address (BT-49) shall have a Scheme identifier. - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Standard rated” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Zero rated” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Exempt from VAT” shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Reverse charge” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Intra-community supply” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Export outside the EU” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Not subject to VAT” shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “IGIC” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “IPSI” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". - - - - - - - - - - - - - - In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. - - - - - - - - - - - - - - An Invoice shall contain the Buyer postal address (BG-8). - - - - - - - - - - - - - - The Buyer postal address shall contain a Buyer country code (BT-55). - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ControlRequirementIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContentCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:SubjectCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LanguageID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Purpose' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VersionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicationSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BIMSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MessageStandardSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ScenarioSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTransactionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubsetSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TestIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSupplyChainTradeLineItem' must occur at least 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerTradeParty' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:BuyerTradeParty' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerAgentTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerTaxRepresentativeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OrderResponseReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PriceListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductEndUserTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseConditionsReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Reference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesAgentTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedProcuringProject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SupplyInstructionReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimateCustomerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DescriptionBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EarliestOccurrenceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LatestOccurrenceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OccurrenceLogisticsLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OccurrenceSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeliveryNoteReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReceivingAdviceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GlobalID' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimateShipToTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentReference' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ApplicableTradeTax' must occur at least 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTradePaymentTerms' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:BasisAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:ExemptionReasonCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceIssuerID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceType' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DuePayableAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FactoringAgreementReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FactoringListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoicerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LetterOfCreditReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NextInvoiceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GlobalID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentCurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProFormaInvoiceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AmountTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CostReferenceDimensionPattern' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SetTriggerCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedAdvancePayment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryTradeTax' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradePaymentDiscountTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradePaymentPenaltyTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FromEventCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstructionTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PartialPaymentAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PartialPaymentPercent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayeeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentMeansID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SettlementPeriodMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TaxTotalAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GrandTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:DuePayableAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductValueExcludingTobaccoTaxInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RetailValueExcludingTaxInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoundingAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@currencyID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalDepositFeeInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalDiscountAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GuaranteeMethodCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AccountName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayeeSpecifiedCreditorFinancialInstitution' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IBANID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AccountName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProprietaryID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayerSpecifiedDebtorFinancialInstitution' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentMethodCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxCurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimatePayeeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeProduct' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedLineTradeAgreement' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineStatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineStatusReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ParentLineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DescriptionCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSubordinateTradeLineItem' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetPriceProductTradePrice' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContractReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossPriceProductTradePrice' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSpecifiedMarketplace' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ItemBuyerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ItemSellerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AppliedTradeAllowanceCharge' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChangeReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeliveryTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MaximumQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MinimumQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OrderUnitConversionFactorNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradeComparisonReferencePrice' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValiditySpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimateCustomerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BilledQuantity' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeFreeQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeliveryNoteReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DespatchAdviceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DespatchedQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSupplyChainPackaging' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PackageQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PerPackageUnitQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductUnitQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReceivedQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReceivingAdviceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequestedDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequestedQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ShipToTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDeliveryAdjustment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TheoreticalWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimateShipToTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeTax' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementLineMonetarySummation' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BillingSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DiscountIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReceivableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationPercent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradePaymentTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrandTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductWeightLossInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalAdjustmentAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferenceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableMaterialGoodsCharacteristic' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableProductCharacteristic' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AreaDensityMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BrandName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BrandOwnerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerAssignedID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CertificationEvidenceReferenceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ColourCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ColourDescription' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DesignatedProductClassification' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Designation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DrainedNetWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndItemName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndItemTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedCancellationAnnouncedLaunchDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedLatestProductDataChangeDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedReferencedProduct' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IndividualTradeProductInstance' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InspectionReferenceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalRightsOwnerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LinearSpatialDimension' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MSDSReferenceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ManufacturerAssignedID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ManufacturerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MaximumLinearSpatialDimension' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MinimumLinearSpatialDimension' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OriginTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PresentationSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductGroupID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerAssignedID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubBrandName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradeName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UseDescription' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VariableMeasureIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'rsm:ValuationBreakdownStatement' is marked as not used in the given context. - - - - - - - - - diff --git a/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_EN16931.xslt b/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_EN16931.xslt deleted file mode 100644 index 96f83a48..00000000 --- a/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_EN16931.xslt +++ /dev/null @@ -1,50242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - [] - - - *[local-name()=' - - '] - - [] - - - - - / - - @ - - - @*[local-name()=' - - ' and namespace-uri()=' - - '] - - - - - - - - - / - - - [ - - ] - - - - /@ - - - - - - - - / - - - [ - - ] - - - - /@ - - - - - - - - - - - - - - - - - - - - - - - - . - - - - -U - - U - - - - U. - - n - - - - U. - - _ - - _ - - - - - - - - -   -   -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Schema for FACTUR-X; 1.0; EN16931-COMPLIANT (FULLY) - - - - - - - - - - - - - - - - - - Each Additional supporting document (BG-24) shall contain a Supporting document reference (BT-122). - - - - - - - - - - - - - - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. - - - - - - - - - - - - - - Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. - - - - - - - - - - - - - - VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. - - - - - - - - - - - - - - The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amount (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Zero rated". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). - - - - - - - - - - - - - - If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). - - - - - - - - - - - - - - Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). - - - - - - - - - - - - - - Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. - - - - - - - - - - - - - - Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level charge amount (BT-92) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level charge base amount (BT-93) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). - - - - - - - - - - - - - - - - - - - - - - - - - - - The last 4 to 6 digits of the Payment card primary account number (BT-87) shall be present if Payment card information (BG-18) is provided in the Invoice. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). - - - - - - - - - - - - - - An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall contain the Item name (BT-153). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall contain the Item net price (BT-146). - - - - - - - - - - - - - - The Item net price (BT-146) shall NOT be negative. - - - - - - - - - - - - - - The Item gross price (BT-148) shall NOT be negative. - - - - - - - - - - - - - - The Item standard identifier (BT-157) shall have a Scheme identifier - - - - - - - - - - - - - - The Item classification identifier (BT-158) shall have a Scheme identifier - - - - - - - - - - - - - - Each Invoice line (BG-25) shall be categorized with an Invoiced item VAT category code (BT-151). - - - - - - - - - - - - - - An Invoice shall at least have one VAT breakdown group (BG-23). - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line net amount (BT-131) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). - - - - - - - - - - - - - - - - - - - - - - - - - - - The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - - - - - - - - - - - - - - In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. - - - - - - - - - - - - - - - - - - - - - - - - - - - If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). - - - - - - - - - - - - - - If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). - - - - - - - - - - - - - - Invoice line allowance reason code (BT-140) and Invoice line allowance reason (BT-139) shall indicate the same type of allowance reason. - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line allowance amount (BT-136) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line allowance base amount (BT-137) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). - - - - - - - - - - - - - - Invoice line charge reason code (BT-145) and Invoice line charge reason (BT144) shall indicate the same type of charge reason. - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line charge amount (BT-141) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line charge base amount (BT-142) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice shall have the Invoice total amount without VAT (BT-109). - - - - - - - - - - - - - - An Invoice shall have the Invoice total amount with VAT (BT-112). - - - - - - - - - - - - - - An Invoice shall have the Amount due for payment (BT-115). - - - - - - - - - - - - - - Sum of allowances on document level (BT-107) = S Document level allowance amount (BT-92). - - - - - - - - - - - - - - Sum of charges on document level (BT-108) = S Document level charge amount (BT-99). - - - - - - - - - - - - - - Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Paid amount (BT-113) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. - - - - - - - - - - - - - - If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. - - - - - - - - - - - - - - Invoice total amount without VAT (BT-109) = S Invoice line net amount (BT-131) - Sum of allowances on document level (BT-107) + Sum of charges on document level (BT-108). - - - - - - - - - - - - - - Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). - - - - - - - - - - - - - - An Invoice shall have the Sum of Invoice line net amount (BT-106). - - - - - - - - - - - - - - - - - - - - - - - - - - - Invoice total VAT amount (BT-110) = S VAT category tax amount (BT-117). - - - - - - - - - - - - - - - - - - - - - - - - - - - A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). - - - - - - - - - - - - - - - - - - - - - - - - - - - A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. - - - - - - - - - - - - - - If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Reverse charge". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Reverse charge” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). - - - - - - - - - - - - - - - - - - - - - - - - - - - The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Exempt from VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Exempt from VAT". - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Export outside the EU". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Export outside the EU” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Intra-community supply". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). - - - - - - - - - - - - - - In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. - - - - - - - - - - - - - - In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. - - - - - - - - - - - - - - - - - - - - - - - - - - - For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IGIC", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is “IGIC” and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IPSI", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is “IPSI” and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is " Not subject to VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Not subject to VAT". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Not subject to VAT” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is not "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-46). - - - - - - - - - - - - - - An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice shall have a Specification identifier (BT-24). - - - - - - - - - - - - - - An Invoice shall have an Invoice number (BT-1). - - - - - - - - - - - - - - An Invoice shall have an Invoice issue date (BT-2). - - - - - - - - - - - - - - An Invoice shall have an Invoice type code (BT-3). - - - - - - - - - - - - - - An Invoice shall have an Invoice currency code (BT-5). - - - - - - - - - - - - - - An Invoice shall contain the Seller name (BT-27). - - - - - - - - - - - - - - An Invoice shall contain the Buyer name (BT-44). - - - - - - - - - - - - - - An Invoice shall contain the Seller postal address (BG-5). - - - - - - - - - - - - - - The Seller postal address (BG-5) shall contain a Seller country code (BT-40). - - - - - - - - - - - - - - The Seller electronic address (BT-34) shall have a Scheme identifier. - - - - - - - - - - - - - - The Buyer electronic address (BT-49) shall have a Scheme identifier. - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Standard rated” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Zero rated” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Exempt from VAT” shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Reverse charge” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Intra-community supply” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Export outside the EU” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Not subject to VAT” shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “IGIC” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “IPSI” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". - - - - - - - - - - - - - - In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. - - - - - - - - - - - - - - An Invoice shall contain the Buyer postal address (BG-8). - - - - - - - - - - - - - - The Buyer postal address shall contain a Buyer country code (BT-55). - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ControlRequirementIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContentCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:SubjectCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LanguageID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Purpose' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VersionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicationSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BIMSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MessageStandardSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ScenarioSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTransactionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubsetSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TestIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSupplyChainTradeLineItem' must occur at least 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerTradeParty' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:BuyerTradeParty' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:Name' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @characterSetCode' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @encodingCode' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@mimeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @uri' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerAgentTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerTaxRepresentativeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FaxUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OrderResponseReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PriceListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductEndUserTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseConditionsReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Reference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesAgentTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:Description' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FaxUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SupplyInstructionReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimateCustomerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DescriptionBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EarliestOccurrenceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LatestOccurrenceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OccurrenceLogisticsLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OccurrenceSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeliveryNoteReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GlobalID' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimateShipToTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentReference' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ApplicableTradeTax' must occur at least 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTradePaymentTerms' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:BasisAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:ExemptionReasonCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:Date' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceIssuerID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceType' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DuePayableAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FactoringAgreementReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FactoringListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoicerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LetterOfCreditReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NextInvoiceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GlobalID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentCurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProFormaInvoiceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AmountTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CostReferenceDimensionPattern' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SetTriggerCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedAdvancePayment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryTradeTax' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradePaymentDiscountTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradePaymentPenaltyTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FromEventCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstructionTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PartialPaymentAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PartialPaymentPercent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayeeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentMeansID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SettlementPeriodMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TaxTotalAmount' may occur at maximum 2 times. - - - - - - - - - - - - - - Element 'ram:RoundingAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GrandTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:DuePayableAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@currencyID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductValueExcludingTobaccoTaxInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RetailValueExcludingTaxInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@currencyID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalDepositFeeInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalDiscountAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:Information' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditAvailableAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditLimitAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExpiryDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InterestRatePercent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuingCompanyName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MicrochipIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValidFromDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VerificationNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GuaranteeMethodCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BICID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AustralianBSBID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AustrianBankleitzahlID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CHIPSParticipantID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CHIPSUniversalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CanadianPaymentsAssociationID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ClearingSystemName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FedwireRoutingNumberID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GermanBankleitzahlID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:HellenicBankID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:HongKongBankID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IndianFinancialSystemID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IrishNSCID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ItalianDomesticID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JapanFinancialInstitutionCommonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LocationFinancialInstitutionAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NewZealandNCCID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PolishNationalClearingID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PortugueseNCCID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RussianCentralBankID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SICID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SouthAfricanNCCID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpanishDomesticInterbankingID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubDivisionBranchFinancialInstitution' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SwissBCID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UKSortCodeID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IBANID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AccountName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProprietaryID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayerSpecifiedDebtorFinancialInstitution' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentMethodCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimatePayeeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeProduct' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedLineTradeAgreement' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:IncludedNote' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContentCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubjectCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineStatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineStatusReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ParentLineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DescriptionCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSubordinateTradeLineItem' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetPriceProductTradePrice' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContractReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:AppliedTradeAllowanceCharge' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationPercent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Reason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChangeReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeliveryTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MaximumQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MinimumQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OrderUnitConversionFactorNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradeComparisonReferencePrice' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValiditySpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSpecifiedMarketplace' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ItemBuyerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ItemSellerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AppliedTradeAllowanceCharge' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChangeReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeliveryTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MaximumQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MinimumQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OrderUnitConversionFactorNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradeComparisonReferencePrice' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValiditySpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimateCustomerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BilledQuantity' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeFreeQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeliveryNoteReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DespatchAdviceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DespatchedQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSupplyChainPackaging' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PackageQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PerPackageUnitQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductUnitQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReceivedQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReceivingAdviceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequestedDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequestedQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ShipToTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDeliveryAdjustment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TheoreticalWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimateShipToTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeTax' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementLineMonetarySummation' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DiscountIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AmountTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CostReferenceDimensionPattern' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SetTriggerCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradePaymentTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrandTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductWeightLossInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalAdjustmentAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferenceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableMaterialGoodsCharacteristic' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:Value' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableProductCharacteristicCondition' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableReferencedStandard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContentTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MeasurementMethodCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValueCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValueIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValueMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValueSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AreaDensityMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BrandName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BrandOwnerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CertificationEvidenceReferenceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ColourCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ColourDescription' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ClassCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableReferencedStandard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:ClassCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@listID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ClassName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ClassProductCharacteristic' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubClassCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SystemID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SystemName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Designation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DrainedNetWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndItemName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndItemTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedCancellationAnnouncedLaunchDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedLatestProductDataChangeDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedReferencedProduct' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IndividualTradeProductInstance' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InspectionReferenceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalRightsOwnerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LinearSpatialDimension' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MSDSReferenceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ManufacturerAssignedID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ManufacturerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MaximumLinearSpatialDimension' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MinimumLinearSpatialDimension' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubordinateTradeCountrySubDivision' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PresentationSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductGroupID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubBrandName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradeName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UseDescription' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VariableMeasureIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'rsm:ValuationBreakdownStatement' is marked as not used in the given context. - - - - - - - - - diff --git a/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_EXTENDED.xslt b/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_EXTENDED.xslt deleted file mode 100644 index 9d53b3d4..00000000 --- a/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_EXTENDED.xslt +++ /dev/null @@ -1,106438 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - [] - - - *[local-name()=' - - '] - - [] - - - - - / - - @ - - - @*[local-name()=' - - ' and namespace-uri()=' - - '] - - - - - - - - - / - - - [ - - ] - - - - /@ - - - - - - - - / - - - [ - - ] - - - - /@ - - - - - - - - - - - - - - - - - - - - - - - - . - - - - -U - - U - - - - U. - - n - - - - U. - - _ - - _ - - - - - - - - -   -   -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Schema for FACTUR-X; 1.0; EN16931-CONFORMANT-EXTENDED - - - - - - - - - - - - - - - - - - Each Additional supporting document (BG-24) shall contain a Supporting document reference (BT-122). - - - - - - - - - - - - - - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. - - - - - - - - - - - - - - Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. - - - - - - - - - - - - - - VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. - - - - - - - - - - - - - - The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amount (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Zero rated". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). - - - - - - - - - - - - - - If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). - - - - - - - - - - - - - - Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). - - - - - - - - - - - - - - Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. - - - - - - - - - - - - - - Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level charge amount (BT-92) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level charge base amount (BT-93) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). - - - - - - - - - - - - - - - - - - - - - - - - - - - The last 4 to 6 digits of the Payment card primary account number (BT-87) shall be present if Payment card information (BG-18) is provided in the Invoice. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). - - - - - - - - - - - - - - An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall contain the Item name (BT-153). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall contain the Item net price (BT-146). - - - - - - - - - - - - - - The Item net price (BT-146) shall NOT be negative. - - - - - - - - - - - - - - The Item gross price (BT-148) shall NOT be negative. - - - - - - - - - - - - - - The Item standard identifier (BT-157) shall have a Scheme identifier - - - - - - - - - - - - - - The Item classification identifier (BT-158) shall have a Scheme identifier - - - - - - - - - - - - - - Each Invoice line (BG-25) shall be categorized with an Invoiced item VAT category code (BT-151). - - - - - - - - - - - - - - An Invoice shall at least have one VAT breakdown group (BG-23). - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line net amount (BT-131) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). - - - - - - - - - - - - - - - - - - - - - - - - - - - The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - - - - - - - - - - - - - - In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. - - - - - - - - - - - - - - - - - - - - - - - - - - - If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). - - - - - - - - - - - - - - If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). - - - - - - - - - - - - - - Invoice line allowance reason code (BT-140) and Invoice line allowance reason (BT-139) shall indicate the same type of allowance reason. - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line allowance amount (BT-136) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line allowance base amount (BT-137) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). - - - - - - - - - - - - - - Invoice line charge reason code (BT-145) and Invoice line charge reason (BT144) shall indicate the same type of charge reason. - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line charge amount (BT-141) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line charge base amount (BT-142) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice shall have the Invoice total amount without VAT (BT-109). - - - - - - - - - - - - - - An Invoice shall have the Invoice total amount with VAT (BT-112). - - - - - - - - - - - - - - An Invoice shall have the Amount due for payment (BT-115). - - - - - - - - - - - - - - Sum of allowances on document level (BT-107) = S Document level allowance amount (BT-92). - - - - - - - - - - - - - - Sum of charges on document level (BT-108) = S Document level charge amount (BT-99). - - - - - - - - - - - - - - Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Paid amount (BT-113) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. - - - - - - - - - - - - - - If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. - - - - - - - - - - - - - - Invoice total amount without VAT (BT-109) = S Invoice line net amount (BT-131) - Sum of allowances on document level (BT-107) + Sum of charges on document level (BT-108). - - - - - - - - - - - - - - Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). - - - - - - - - - - - - - - An Invoice shall have the Sum of Invoice line net amount (BT-106). - - - - - - - - - - - - - - - - - - - - - - - - - - - Invoice total VAT amount (BT-110) = S VAT category tax amount (BT-117). - - - - - - - - - - - - - - - - - - - - - - - - - - - A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). - - - - - - - - - - - - - - - - - - - - - - - - - - - A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. - - - - - - - - - - - - - - If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Reverse charge". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Reverse charge” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). - - - - - - - - - - - - - - - - - - - - - - - - - - - The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Exempt from VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Exempt from VAT". - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Export outside the EU". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Export outside the EU” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Intra-community supply". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). - - - - - - - - - - - - - - In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. - - - - - - - - - - - - - - In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. - - - - - - - - - - - - - - - - - - - - - - - - - - - For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IGIC", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is “IGIC” and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IPSI", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is “IPSI” and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is " Not subject to VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Not subject to VAT". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Not subject to VAT” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is not "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-46). - - - - - - - - - - - - - - An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice shall have a Specification identifier (BT-24). - - - - - - - - - - - - - - An Invoice shall have an Invoice number (BT-1). - - - - - - - - - - - - - - An Invoice shall have an Invoice issue date (BT-2). - - - - - - - - - - - - - - An Invoice shall have an Invoice type code (BT-3). - - - - - - - - - - - - - - An Invoice shall have an Invoice currency code (BT-5). - - - - - - - - - - - - - - An Invoice shall contain the Seller name (BT-27). - - - - - - - - - - - - - - An Invoice shall contain the Buyer name (BT-44). - - - - - - - - - - - - - - An Invoice shall contain the Seller postal address (BG-5). - - - - - - - - - - - - - - The Seller postal address (BG-5) shall contain a Seller country code (BT-40). - - - - - - - - - - - - - - The Seller electronic address (BT-34) shall have a Scheme identifier. - - - - - - - - - - - - - - The Buyer electronic address (BT-49) shall have a Scheme identifier. - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Standard rated” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Zero rated” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Exempt from VAT” shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Reverse charge” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Intra-community supply” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Export outside the EU” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Not subject to VAT” shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “IGIC” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “IPSI” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". - - - - - - - - - - - - - - In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. - - - - - - - - - - - - - - An Invoice shall contain the Buyer postal address (BG-8). - - - - - - - - - - - - - - The Buyer postal address shall contain a Buyer country code (BT-55). - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ControlRequirementIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteDateTime' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StartDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:SubjectCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Purpose' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VersionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicationSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BIMSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MessageStandardSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ScenarioSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTransactionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubsetSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSupplyChainTradeLineItem' must occur at least 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerTradeParty' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:BuyerTradeParty' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:Name' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @characterSetCode' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @encodingCode' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@mimeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @uri' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RelevantTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerAgentTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerTaxRepresentativeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OrderResponseReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PriceListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseConditionsReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Reference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesAgentTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:Description' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SupplyInstructionReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DescriptionBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EarliestOccurrenceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LatestOccurrenceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OccurrenceLogisticsLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OccurrenceSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedInvoiceAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CarrierTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ConsigneeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ConsignorTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsExportAgentTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsImportAgentTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeclaredValueForCustomsAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeliveryTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FreightForwarderTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossVolumeMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GroupingCentreTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSupplyChainConsignmentItem' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InsurancePremiumAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PackageQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ModeCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Mode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StageCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UsedLogisticsTransportMeans' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalChargeAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TransportContractReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UtilizedLogisticsTransportEquipment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentReference' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ApplicableTradeTax' must occur at least 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:BasisAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:ExemptionReasonCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:Date' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceIssuerID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceType' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DuePayableAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FactoringAgreementReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FactoringListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LetterOfCreditReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NextInvoiceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentCurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProFormaInvoiceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AmountTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CostReferenceDimensionPattern' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SetTriggerCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedTradeTax' must occur at least 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:AppliedAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceCharge' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AppliedFromLogisticsLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AppliedToLogisticsLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationBasis' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationBasisCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeCategoryCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DisbursementAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayingPartyRoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentArrangementCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentPlaceLogisticsLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceCategoryCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TariffClassCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TransportPaymentMethodCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryTradeTax' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:PartialPaymentAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FromEventCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstructionTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PartialPaymentPercent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayeeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentMeansID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SettlementPeriodMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:TaxBasisTotalAmount' may occur at maximum 2 times. - - - - - - - - - - - - - - Element 'ram:TaxTotalAmount' may occur at maximum 2 times. - - - - - - - - - - - - - - Element 'ram:RoundingAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GrandTotalAmount' may occur at maximum 2 times. - - - - - - - - - - - - - - Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:DuePayableAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@currencyID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductValueExcludingTobaccoTaxInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RetailValueExcludingTaxInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@currencyID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@currencyID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalDepositFeeInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalDiscountAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:Information' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditAvailableAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditLimitAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExpiryDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InterestRatePercent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuingCompanyName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MicrochipIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValidFromDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VerificationNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GuaranteeMethodCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BICID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AustralianBSBID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AustrianBankleitzahlID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CHIPSParticipantID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CHIPSUniversalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CanadianPaymentsAssociationID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ClearingSystemName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FedwireRoutingNumberID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GermanBankleitzahlID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:HellenicBankID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:HongKongBankID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IndianFinancialSystemID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IrishNSCID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ItalianDomesticID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JapanFinancialInstitutionCommonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LocationFinancialInstitutionAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NewZealandNCCID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PolishNationalClearingID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PortugueseNCCID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RussianCentralBankID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SICID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SouthAfricanNCCID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpanishDomesticInterbankingID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubDivisionBranchFinancialInstitution' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SwissBCID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UKSortCodeID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IBANID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AccountName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProprietaryID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayerSpecifiedDebtorFinancialInstitution' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentMethodCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MarketID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SourceUnitBasisNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TargetUnitBaseNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimatePayeeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeProduct' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedLineTradeAgreement' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:SubjectCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ParentLineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DescriptionCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSubordinateTradeLineItem' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetPriceProductTradePrice' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @characterSetCode' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @encodingCode' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@mimeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @uri' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationPercent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChangeReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeliveryTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MaximumQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MinimumQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OrderUnitConversionFactorNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradeComparisonReferencePrice' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValiditySpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSpecifiedMarketplace' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ItemBuyerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ItemSellerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:IncludedTradeTax' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AppliedTradeAllowanceCharge' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChangeReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeliveryTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:RateApplicablePercent' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MaximumQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MinimumQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OrderUnitConversionFactorNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradeComparisonReferencePrice' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValiditySpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BilledQuantity' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OccurrenceDateTime' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DescriptionBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EarliestOccurrenceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LatestOccurrenceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OccurrenceLogisticsLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OccurrenceSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DespatchedQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSupplyChainPackaging' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PerPackageUnitQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductUnitQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReceivedQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequestedDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequestedQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDeliveryAdjustment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TheoreticalWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeTax' must occur at least 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementLineMonetarySummation' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:ExemptionReasonCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DiscountIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AmountTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CostReferenceDimensionPattern' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SetTriggerCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradePaymentTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TotalAllowanceChargeAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrandTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductWeightLossInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalAdjustmentAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferenceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableMaterialGoodsCharacteristic' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:Value' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableProductCharacteristicCondition' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableReferencedStandard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContentTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MeasurementMethodCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValueCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValueIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ValueSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AreaDensityMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BrandName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BrandOwnerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CertificationEvidenceReferenceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ColourCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ColourDescription' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ClassCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:ClassName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableReferencedStandard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:ClassCode' is not allowed. - - - - - - - - - - - - - - Attribute '@listID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@listID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ClassProductCharacteristic' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubClassCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SystemID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SystemName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Designation' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DrainedNetWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndItemName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndItemTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedCancellationAnnouncedLaunchDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedLatestProductDataChangeDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:Description' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:UnitQuantity' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IndustryAssignedID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ManufacturerAssignedID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RelationshipTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@unitCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IndividualTradeProductInstance' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InspectionReferenceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalRightsOwnerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LinearSpatialDimension' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MSDSReferenceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ManufacturerAssignedID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ManufacturerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MaximumLinearSpatialDimension' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MinimumLinearSpatialDimension' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubordinateTradeCountrySubDivision' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PresentationSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductGroupID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubBrandName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradeName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UseDescription' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VariableMeasureIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'rsm:ValuationBreakdownStatement' is marked as not used in the given context. - - - - - - - - - diff --git a/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_MINIMUM.xslt b/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_MINIMUM.xslt deleted file mode 100644 index fec3ba4d..00000000 --- a/validator/src/main/resources/xslt/schematron/ZF_211/FACTUR-X_MINIMUM.xslt +++ /dev/null @@ -1,14205 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - [] - - - *[local-name()=' - - '] - - [] - - - - - / - - @ - - - @*[local-name()=' - - ' and namespace-uri()=' - - '] - - - - - - - - - / - - - [ - - ] - - - - /@ - - - - - - - - / - - - [ - - ] - - - - /@ - - - - - - - - - - - - - - - - - - - - - - - - . - - - - -U - - U - - - - U. - - n - - - - U. - - _ - - _ - - - - - - - - -   -   -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Schema for FACTUR-X; 1.0; ACCOUNTING INFORMATION, No XML Invoice, (MINIMUM) - - - - - - - - - - - - - - - - - - Each Additional supporting document (BG-24) shall contain a Supporting document reference (BT-122). - - - - - - - - - - - - - - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). - - - - - - - - - - - - - - Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. - - - - - - - - - - - - - - Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. - - - - - - - - - - - - - - VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. - - - - - - - - - - - - - - The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amount (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Zero rated". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). - - - - - - - - - - - - - - If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). - - - - - - - - - - - - - - Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. - - - - - - - - - - - - - - Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). - - - - - - - - - - - - - - Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). - - - - - - - - - - - - - - Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. - - - - - - - - - - - - - - Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level charge amount (BT-92) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Document level charge base amount (BT-93) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). - - - - - - - - - - - - - - - - - - - - - - - - - - - The last 4 to 6 digits of the Payment card primary account number (BT-87) shall be present if Payment card information (BG-18) is provided in the Invoice. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). - - - - - - - - - - - - - - An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall contain the Item name (BT-153). - - - - - - - - - - - - - - Each Invoice line (BG-25) shall contain the Item net price (BT-146). - - - - - - - - - - - - - - The Item net price (BT-146) shall NOT be negative. - - - - - - - - - - - - - - The Item gross price (BT-148) shall NOT be negative. - - - - - - - - - - - - - - The Item standard identifier (BT-157) shall have a Scheme identifier - - - - - - - - - - - - - - The Item classification identifier (BT-158) shall have a Scheme identifier - - - - - - - - - - - - - - Each Invoice line (BG-25) shall be categorized with an Invoiced item VAT category code (BT-151). - - - - - - - - - - - - - - An Invoice shall at least have one VAT breakdown group (BG-23). - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line net amount (BT-131) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). - - - - - - - - - - - - - - - - - - - - - - - - - - - The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - - - - - Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - - - - - - - - - - - - - - In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. - - - - - - - - - - - - - - - - - - - - - - - - - - - If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). - - - - - - - - - - - - - - If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). - - - - - - - - - - - - - - Invoice line allowance reason code (BT-140) and Invoice line allowance reason (BT-139) shall indicate the same type of allowance reason. - - - - - - - - - - - - - - Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line allowance amount (BT-136) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line allowance base amount (BT-137) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). - - - - - - - - - - - - - - Invoice line charge reason code (BT-145) and Invoice line charge reason (BT144) shall indicate the same type of charge reason. - - - - - - - - - - - - - - Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line charge amount (BT-141) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice line charge base amount (BT-142) is 2. - - - - - - - - - - - - - - - - - - - - - - - - - - - The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice shall have the Invoice total amount without VAT (BT-109). - - - - - - - - - - - - - - An Invoice shall have the Invoice total amount with VAT (BT-112). - - - - - - - - - - - - - - An Invoice shall have the Amount due for payment (BT-115). - - - - - - - - - - - - - - Sum of allowances on document level (BT-107) = S Document level allowance amount (BT-92). - - - - - - - - - - - - - - Sum of charges on document level (BT-108) = S Document level charge amount (BT-99). - - - - - - - - - - - - - - Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Paid amount (BT-113) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. - - - - - - - - - - - - - - The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. - - - - - - - - - - - - - - If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. - - - - - - - - - - - - - - - - - - - - - - - - - - - A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). - - - - - - - - - - - - - - - - - - - - - - - - - - - A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. - - - - - - - - - - - - - - If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. - - - - - - - - - - - - - - - - - - - - - - - - - - - In Deutschland sind die Profile MINIMUM und BASIC WL nur als Buchungshilfe (TypeCode: 751) zugelassen. - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Reverse charge". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Reverse charge” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). - - - - - - - - - - - - - - - - - - - - - - - - - - - The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Export outside the EU". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Export outside the EU” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Intra-community supply". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). - - - - - - - - - - - - - - In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. - - - - - - - - - - - - - - In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. - - - - - - - - - - - - - - - - - - - - - - - - - - - For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IGIC", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is “IGIC” and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IPSI", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is “IPSI” and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - - - - - - - - - - - - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is " Not subject to VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are “Not subject to VAT". - - - - - - - - - - - - - - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is “Not subject to VAT” shall be 0 (zero). - - - - - - - - - - - - - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is not "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Reverse charge” shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Exempt from VAT” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Export outside the EU” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Intra-community supply” shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “IGIC” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “IPSI” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Not subject to VAT” shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-46). - - - - - - - - - - - - - - An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is “Standard rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is “Zero rated” shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - - - - - - - - - - - - An Invoice shall have a Specification identifier (BT-24). - - - - - - - - - - - - - - An Invoice shall have an Invoice number (BT-1). - - - - - - - - - - - - - - An Invoice shall have an Invoice issue date (BT-2). - - - - - - - - - - - - - - An Invoice shall have an Invoice type code (BT-3). - - - - - - - - - - - - - - An Invoice shall have an Invoice currency code (BT-5). - - - - - - - - - - - - - - An Invoice shall contain the Seller name (BT-27). - - - - - - - - - - - - - - An Invoice shall contain the Buyer name (BT-44). - - - - - - - - - - - - - - An Invoice shall contain the Seller postal address (BG-5). - - - - - - - - - - - - - - The Seller postal address (BG-5) shall contain a Seller country code (BT-40). - - - - - - - - - - - - - - The Seller electronic address (BT-34) shall have a Scheme identifier. - - - - - - - - - - - - - - The Buyer electronic address (BT-49) shall have a Scheme identifier. - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Standard rated” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Zero rated” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Exempt from VAT” shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Reverse charge” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Intra-community supply” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Export outside the EU” shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Not subject to VAT” shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “IGIC” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". - - - - - - - - - - - - - - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “IPSI” shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". - - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CategoryCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ControlRequirementIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedNote' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@format' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LanguageID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Purpose' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:VersionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicationSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BIMSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:MessageStandardSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ScenarioSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTransactionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubsetSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TestIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerTradeParty' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:BuyerTradeParty' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerAgentTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuyerTaxRepresentativeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ContractReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:OrderResponseReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PriceListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductEndUserTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseConditionsReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Reference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesAgentTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SellerTaxRepresentativeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CountrySubDivisionName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Attribute '@schemeID' is required in this context. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@schemeID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedProcuringProject' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SupplyInstructionReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimateCustomerOrderReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DeliveryNoteReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DespatchAdviceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PreviousDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReceivingAdviceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ShipToTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimateShipToTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ApplicableTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:BillingSpecifiedPeriod' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditReason' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditReasonCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceIssuerID' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceType' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:CreditorReferenceTypeCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:DuePayableAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FactoringAgreementReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:FactoringListReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). - - - - - - - - - - - - Element 'ram:InvoiceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoiceeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InvoicerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LetterOfCreditReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NextInvoiceDateTime' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayeeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PayerTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentCurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PaymentReference' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProFormaInvoiceReferencedDocument' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ReceivableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedAdvancePayment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeAllowanceCharge' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradePaymentTerms' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:TaxTotalAmount' may occur at maximum 1 times. - - - - - - - - - - - - - - Element 'ram:GrandTotalAmount' must occur exactly 1 times. - - - - - - - - - - - - - - Element 'ram:DuePayableAmount' must occur exactly 1 times. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:AllowanceTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ChargeTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:LineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:ProductValueExcludingTobaccoTaxInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RetailValueExcludingTaxInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:RoundingAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - - - - Value of '@currencyID' is not allowed. - - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalDepositFeeInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalDiscountAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalPrepaidAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SpecifiedTradeSettlementPaymentMeans' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:TaxCurrencyCode' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:UltimatePayeeTradeParty' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'ram:IncludedSupplyChainTradeLineItem' is marked as not used in the given context. - - - - - - - - - - - - - - - - - - - - - - - - Element 'rsm:ValuationBreakdownStatement' is marked as not used in the given context. - - - - - - - - - diff --git a/validator/src/test/java/org/mustangproject/validator/XMLValidatorTest.java b/validator/src/test/java/org/mustangproject/validator/XMLValidatorTest.java index fd50a2ff..805bbf29 100644 --- a/validator/src/test/java/org/mustangproject/validator/XMLValidatorTest.java +++ b/validator/src/test/java/org/mustangproject/validator/XMLValidatorTest.java @@ -191,4 +191,25 @@ public class XMLValidatorTest extends ResourceCase { } + public void testXRValidation() { + ValidationContext ctx = new ValidationContext(null); + XMLValidator xv = new XMLValidator(ctx); + XPathEngine xpath = new JAXPXPathEngine(); + + File tempFile = getResourceAsFile("validXRv2.xml"); + try { + xv.setFilename(tempFile.getAbsolutePath()); + xv.validate(); + + Source source = Input.fromString("" + xv.getXMLResult() + "").build(); + String content = xpath.evaluate("/validation/summary/@status", source); + assertEquals("valid", content); + + + } catch (IrrecoverableValidationError e) { + // ignore, will be in XML output anyway + } + + } + }