First Commit from Source Code Reply

This commit is contained in:
vincenzofariello
2024-05-09 17:40:24 +02:00
parent 11e3b57c5b
commit 107a016cb9
35225 changed files with 1111346 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="Reply">
<xs:complexType>
<xs:sequence>
<xs:element name="Header">
<xs:complexType>
<xs:sequence>
<xs:element name="Parametri">
<xs:complexType>
<xs:sequence>
<xs:element name="OPERATOREMittente" type="xs:string"/>
<xs:element name="NomeFile" type="xs:string"/>
<xs:element name="TipoFile" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ReturnCode">
<xs:complexType>
<xs:sequence>
<xs:element name="Codice" type="xs:string"/>
<xs:element name="Descrizione" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:complexType name="type_Request">
<xs:sequence>
<xs:element name="Parametri">
<xs:complexType>
<xs:sequence>
<xs:element name="TipoComunicazione" type="type_tipoComunicazioneRequest"/>
<xs:element name="DataInvioRichiesta" type="xs:string"/>
<xs:element name="CodiceOperatoreRecipient" type="xs:string"/>
<xs:element name="CodiceOrdineRecipient" type="xs:string"/>
<xs:element name="CodiceOLODonating" type="xs:string"/>
<xs:element name="CodiceRisorsa1" type="xs:string"/>
<xs:element name="CodiceServizio1" type="xs:string"/>
<xs:element name="CodiceRisorsa2" type="xs:string"/>
<xs:element name="CodiceServizio2" type="xs:string"/>
<xs:element name="NomeCliente" type="xs:string"/>
<xs:element name="CognomeClienteRagioneSociale" type="xs:string"/>
<xs:element name="CodiceFiscalePartitaIVA" type="xs:string"/>
<xs:element name="IdentificativoCorrelazioni" type="xs:string"/>
<xs:element name="TotRichieste" type="xs:string"/>
<xs:element name="Note" type="xs:string"/>
<xs:element name="DirectoryNumber1" type="xs:string"/>
<xs:element name="DirectoryNumber2" type="xs:string"/>
<xs:element name="DirectoryNumber3" type="xs:string"/>
<xs:element name="DirectoryNumber4" type="xs:string"/>
<xs:element name="DirectoryNumber5" type="xs:string"/>
<xs:element name="DirectoryNumber6" type="xs:string"/>
<xs:element name="DirectoryNumber7" type="xs:string"/>
<xs:element name="DirectoryNumber8" type="xs:string"/>
<xs:element name="DirectoryNumber9" type="xs:string"/>
<xs:element name="DirectoryNumber10" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="CodiceOrdineRecipient" use="required"/>
</xs:complexType>
<xs:element name="xml1">
<xs:complexType>
<xs:sequence>
<xs:element name="Request" type="type_Request" maxOccurs="100"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:simpleType name="type_tipoComunicazioneRequest">
<xs:restriction base="xs:string">
<xs:pattern value="1|4"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>

View File

@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2009 sp1 (http://www.altova.com) by VTSvil (ValueTeam) -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:complexType name="type_Response">
<xs:sequence>
<xs:element name="Parametri">
<xs:complexType>
<xs:sequence>
<xs:element name="TipoComunicazione" type="type_tipoComunicazioneResponse"/>
<xs:element name="CodiceOperatoreRecipient" type="xs:string"/>
<xs:element name="CodiceOrdineRecipient" type="xs:string"/>
<xs:element name="CodiceOLODonating" type="xs:string"/>
<xs:element name="CodiceRisorsa1" type="xs:string"/>
<xs:element name="CodiceRisorsa2" type="xs:string"/>
<xs:element name="StatoRichiesta" type="type_statoRichiesta" minOccurs="0"/>
<xs:element name="CausaleRifiuto" type="type_causaleRifiuto" minOccurs="0"/>
<xs:element name="CodiceMotivoRifiuto" type="xs:string"/>
<xs:element name="MotivoRifiuto" type="xs:string"/>
<xs:element name="NumerazioneErrata" type="xs:string"/>
<xs:element name="CodiceSessione" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="CodiceOrdineRecipient" use="required"/>
</xs:complexType>
<xs:element name="xml2">
<xs:complexType>
<xs:sequence>
<xs:element name="Response" type="type_Response" maxOccurs="100"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:simpleType name="type_tipoComunicazioneResponse">
<xs:restriction base="xs:string">
<xs:pattern value="2|3|5"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="type_statoRichiesta">
<xs:restriction base="xs:string">
<xs:enumeration value=""/>
<xs:enumeration value="0"/>
<xs:enumeration value="1"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="type_causaleRifiuto">
<xs:restriction base="xs:string">
<xs:enumeration value=""/>
<xs:enumeration value="0"/>
<xs:enumeration value="1"/>
<xs:enumeration value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>