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,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Notifica online DBC-CRM</xs:documentation>
</xs:annotation>
<xs:element name="NotificaVOIPToCRM">
<xs:complexType>
<xs:sequence>
<xs:element name="ID_ESIGENZA" type="string15TYPE"/>
<xs:element name="TIPO_CHIAMATA" type="tipoChiamataTYPE"/>
<xs:element name="TIPO_EVENTO" type="tipoEventoTYPE"/>
<xs:element name="LISTA_DN" type="listaDNTYPE" minOccurs="0"/>
<xs:element name="DFSA" type="dataDDMMYYYY" minOccurs="0"/>
<xs:element name="DATA_OPERAZIONE" type="dataDDMMYYYYHHMMSS"/>
<xs:element name="ID_OL_FITTIZIO" type="string15TYPE" minOccurs="0"/>
<xs:element name="ESITO_PACCHETTO" type="string15TYPE" minOccurs="0"/>
<xs:element name="TI_DAC" type="dataDDMMYYYY" minOccurs="0"/>
<xs:element name="DFSA2" type="dataDDMMYYYY" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:complexType name="listaDNTYPE">
<xs:sequence>
<xs:element name="DN" maxOccurs="100">
<xs:complexType>
<xs:attribute name="NUM_TEL" type="string12TYPE" use="required"/>
<xs:attribute name="CLASSIFICAZIONE" type="classificazioneTYPE" use="required"/>
<xs:attribute name="DONOR" type="string3TYPE" />
<xs:attribute name="PRIMARIO" type="string12TYPE" />
<xs:attribute name="ESITO_DN" type="esitoTYPE"/>
<xs:attribute name="CAUSALEKO" type="string50TYPE" />
<xs:attribute name="RADICALE" type="string12TYPE" />
<xs:attribute name="TIPO_ESITO" type="string50TYPE" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="classificazioneTYPE">
<xs:restriction base="xs:string">
<xs:pattern value="XA|XB|XC|XD|XE|XF"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string3TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="3"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="dataDDMMYYYY">
<xs:restriction base="xs:string">
<xs:pattern value="\d{2}-\d{2}-\d{4}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="tipoEventoTYPE">
<xs:restriction base="xs:string">
<xs:pattern value="TIPOCOMM1|VALIDAZIONE_OLO|ACCETTAZIONE_OLO|KOPIC|RIMODULAZIONE_DAC|ESPLETAMENTO"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string15TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="15"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string50TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="50"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="esitoTYPE">
<xs:restriction base="xs:string">
<xs:pattern value="OK|KO"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="tipoChiamataTYPE">
<xs:restriction base="xs:string">
<xs:pattern value="VOIP35|VOIP103"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="dataDDMMYYYYHHMMSS">
<xs:restriction base="xs:string">
<xs:pattern value="\d{2}-\d{2}-\d{4} \d{2}:\d{2}:\d{2}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string12TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="12"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>