17 lines
663 B
XML
17 lines
663 B
XML
<?xml version="1.0" encoding="windows-1252" ?>
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.example.org"
|
|
targetNamespace="http://www.example.org" elementFormDefault="qualified">
|
|
<xsd:element name="Response">
|
|
<xsd:annotation>
|
|
<xsd:documentation>A sample element</xsd:documentation>
|
|
</xsd:annotation>
|
|
<xsd:complexType>
|
|
<xsd:sequence>
|
|
<xsd:element name="resultCode" type="xsd:string"/>
|
|
<xsd:element name="resultStatus" type="xsd:string"/>
|
|
<xsd:element name="resultDescriptions" type="xsd:string"/>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
</xsd:element>
|
|
</xsd:schema>
|