20 lines
783 B
XML
20 lines
783 B
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
<xs:simpleType name="tipoComunicazioneType">
|
|
<xs:restriction base="xs:string">
|
|
<xs:pattern value="V2"/>
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
<xs:element name="VerificaNumerazione">
|
|
<xs:annotation>
|
|
<xs:documentation>Comment describing your root element</xs:documentation>
|
|
</xs:annotation>
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element name="Tipo_Comunicazione" type="tipoComunicazioneType"/>
|
|
<xs:element name="CodiceOrdine" type="xs:string"/>
|
|
<xs:element name="IdLinea" type="xs:string"/>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema> |