44 lines
1.2 KiB
XML
44 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<xs:schema
|
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:bvi="http://telecomitalia.it/SOA/BVI"
|
|
xmlns:cst="http://dbcmnp/SOA/LastPortabilityCustomTypes/2020-01-22"
|
|
xmlns:sm="http://dbcmnp/SOA/LastPortability/2020-01-22"
|
|
targetNamespace="http://dbcmnp/SOA/LastPortability/2020-01-22"
|
|
elementFormDefault="qualified"
|
|
version="1.0"
|
|
>
|
|
<xs:element name="portabilityStateRequest">
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element name="utenza" type="sm:UtenzaType"/>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
|
|
<xs:element name="portabilityStateResponse">
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element name="statoPortabilita" type="sm:StatoPortabilitaType"/>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
|
|
<xs:simpleType name="UtenzaType">
|
|
<xs:restriction base="xs:string">
|
|
<xs:pattern value="[39]{2}[0-9]+"/>
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
|
|
<xs:simpleType name="StatoPortabilitaType">
|
|
<xs:restriction base = "xs:string">
|
|
<xs:enumeration value = "OK"/>
|
|
<xs:enumeration value = "KO"/>
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
|
|
|
|
|
|
</xs:schema>
|