XSD scheme
The sent XML file must comply with the following XSD scheme.
warning
The fields where you see minOccurs=”1”
are mandatory.
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.szamlazz.hu/xmlnyugtast" xmlns:tns="http://www.szamlazz.hu/xmlnyugtast" elementFormDefault="qualified">
<complexType name="beallitasokTipus">
<sequence>
<element name="felhasznalo" type="string" maxOccurs="1" minOccurs="0"></element>
<element name="jelszo" type="string" maxOccurs="1" minOccurs="0"></element>
<element name="szamlaagentkulcs" type="string" maxOccurs="1" minOccurs="0"></element>
<element name="pdfLetoltes" type="boolean" maxOccurs="1" minOccurs="1"></element>
</sequence>
</complexType>
<complexType name="fejlecTipus">
<sequence>
<element name="nyugtaszam" type="string" maxOccurs="1" minOccurs="1"></element>
<element name="pdfSablon" type="string" maxOccurs="1" minOccurs="0"></element>
<element name="hivasAzonosito" type="string" maxOccurs="1" minOccurs="0"></element>
</sequence>
</complexType>
<element name="xmlnyugtast">
<complexType>
<sequence>
<element name="beallitasok" type="tns:beallitasokTipus" maxOccurs="1" minOccurs="1"></element>
<element name="fejlec" type="tns:fejlecTipus" maxOccurs="1" minOccurs="1"></element>
</sequence>
</complexType>
</element>
</schema>