First Commit - Source Code from Reply

This commit is contained in:
vincenzofariello
2024-05-13 12:54:14 +02:00
parent 73e32a5020
commit a15aee1f08
11184 changed files with 1065913 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Notifica online CRMC-DBC per il processo di Home Zone </xs:documentation>
</xs:annotation>
<xs:include schemaLocation="../DBC_Types/HZ_DBC_TYPES.xsd"/>
<xs:element name="NotificaFromCRMC">
<xs:complexType>
<xs:sequence>
<xs:element name="SUBSYS" type="string10TYPE" minOccurs="0"/>
<xs:element name="PREFISSO_DN" type="fixedPrefixTYPE"/>
<xs:element name="NUMERO_DN" type="fixedNumberTYPE"/>
<xs:element name="TIPO_OPERAZIONE" type="operationTYPE"/>
<xs:element name="MSISDN" type="mobilePhoneTYPE" minOccurs="0"/>
<xs:element name="NOME_CLIENTE" type="string30TYPE" minOccurs="0"/>
<xs:element name="COGNOME_CLIENTE" type="string60TYPE" minOccurs="0"/>
<xs:element name="DENOMINAZIONE_SOCIALE" type="string60TYPE" minOccurs="0"/>
<xs:element name="CF_PARTITA_IVA" type="string16TYPE" minOccurs="0"/>
<xs:element name="VIA" type="string70TYPE" minOccurs="0"/>
<xs:element name="LOCALITA" type="string60TYPE" minOccurs="0"/>
<xs:element name="NUMERO_CIVICO" type="string10TYPE" minOccurs="0"/>
<xs:element name="CODICE_COMUNE" type="string10TYPE" minOccurs="0"/>
<xs:element name="NOTE" type="string255TYPE" minOccurs="0"/>
<xs:element name="DAC" type="string10TYPE" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:simpleType name="string30TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="30"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string60TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="60"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string16TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="16"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string70TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="70"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string10TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="10"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string255TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Notifica online DBC-CRMC per il processo di Home Zone </xs:documentation>
</xs:annotation>
<xs:include schemaLocation="../DBC_Types/HZ_DBC_TYPES.xsd"/>
<xs:element name="NotificaFromDBC">
<xs:complexType>
<xs:sequence>
<xs:element name="SUBSYS" type="string10TYPE" minOccurs="0"/>
<xs:element name="CODICE_EVENTO" type="eventTYPE"/>
<xs:element name="ESITO" type="esitoTYPE"/>
<xs:element name="ID_RICHIESTA" type="string11TYPE"/>
<xs:element name="DIRECTORY_NUMBER" type="string12TYPE"/>
<xs:element name="MSISDN" type="mobilePhoneTYPE" minOccurs="0"/>
<xs:element name="DAC" type="string10TYPE" minOccurs="0"/>
<xs:element name="CAUSALE_RIFIUTO" type="string255TYPE" minOccurs="0"/>
<xs:element name="NOTE" type="string255TYPE" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:simpleType name="string11TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="11"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string12TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="12"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string10TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="10"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string255TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="esitoTYPE">
<xs:restriction base="xs:int">
<xs:pattern value="0|1"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>