First Commit - Source Code from Reply
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
// Name: DBCToMSPESPnotifyEndCreditTransferESP
|
||||
// Type: XSD file
|
||||
// Created: 17/03/2009
|
||||
// LastUpdate 17/03/2009
|
||||
// Developed by: ValueTeam
|
||||
-->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="notifyEndCreditTransferESP">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="ID_RICHIESTA" type="string23TYPE"/>
|
||||
<xs:element name="DATA_NOTIFICA_CREDITO" type="string8TYPE"/>
|
||||
<xs:element name="ORA_NOTIFICA_CREDITO" type="string5TYPE"/>
|
||||
<xs:element name="MSISDN" type="string12TYPE"/>
|
||||
<xs:element name="IMPORTO_CREDITO_RESIDUO" type="patternCredito"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:simpleType name="string23TYPE">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="23"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="string8TYPE">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="8"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="string5TYPE">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="5"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="string12TYPE">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="12"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="patternCredito">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="[0-9]{1,5}[.][0-9]{2,2}"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
||||
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
// Name: DBCToMSPnotifyEndCreditTransfer.xsd
|
||||
// Type: XSD file
|
||||
// Created: 17/03/2009
|
||||
// LastUpdate 17/03/2009
|
||||
// Developed by: ValueTeam
|
||||
-->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="notifyEndCreditTransfer">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="ID_RICHIESTA" type="string23TYPE"/>
|
||||
<xs:element name="DATA_NOTIFICA_CREDITO" type="string8TYPE"/>
|
||||
<xs:element name="ORA_NOTIFICA_CREDITO" type="string5TYPE"/>
|
||||
<xs:element name="MSISDN" type="string12TYPE"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:simpleType name="string23TYPE">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="23"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="string8TYPE">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="8"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="string5TYPE">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="5"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="string12TYPE">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="12"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
||||
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
// Name: MSPESPToDBCnotifyCreditTransferDonorESP.xsd
|
||||
// Type: XSD file
|
||||
// Created: 17/03/2009
|
||||
// LastUpdate 17/03/2009
|
||||
// Developed by: ValueTeam
|
||||
-->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="notifyCreditTransferDonorESP">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="TIPO_EVENTO" type="CodiceTipoEventoNotificaTFC"/>
|
||||
<xs:element name="ID_RICHIESTA_DBC" type="string23TYPE"/>
|
||||
<xs:element name="IMPORTO_CREDITO_RESIDUO" type="patternCredito"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:simpleType name="string23TYPE">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="23"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="CodiceTipoEventoNotificaTFC">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="01|03"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="patternCredito">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="[0-9]{1,5}[.][0-9]{2,2}"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
||||
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
// Name: MSPToDBCnotifyCreditTransferDonorTIM.xsd
|
||||
// Type: XSD file
|
||||
// Created: 17/03/2009
|
||||
// LastUpdate 17/03/2009
|
||||
// Developed by: ValueTeam
|
||||
-->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="notifyCreditTransferDonorTIM">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="TIPO_EVENTO" type="CodiceTipoEventoNotificaTFC"/>
|
||||
<xs:element name="ID_RICHIESTA_DBC" type="string23TYPE"/>
|
||||
<xs:element name="IMPORTO_CREDITO_RESIDUO" type="patternCredito"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:simpleType name="string23TYPE">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="23"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="CodiceTipoEventoNotificaTFC">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="01|03"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="patternCredito">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="[0-9]{1,5}[.][0-9]{2,2}"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
||||
Reference in New Issue
Block a user