-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTemperatureConverter_InlineSchema1.xsd
More file actions
29 lines (29 loc) · 1.4 KB
/
TemperatureConverter_InlineSchema1.xsd
File metadata and controls
29 lines (29 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?><xsd:schema targetNamespace="http://TemperatureConverter" xmlns:tns="http://TemperatureConverter" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element xmlns:ibmSchExtn="http://www.ibm.com/schema/extensions" ibmSchExtn:docRoot="true" name="CtoF">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="TemperatureInC" nillable="true" type="xsd:decimal"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element xmlns:ibmSchExtn="http://www.ibm.com/schema/extensions" ibmSchExtn:docRoot="true" name="CtoFResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="TemperatureInF" nillable="true" type="xsd:decimal"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element xmlns:ibmSchExtn="http://www.ibm.com/schema/extensions" ibmSchExtn:docRoot="true" name="FtoC">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="TemperatureInF" nillable="true" type="xsd:decimal"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element xmlns:ibmSchExtn="http://www.ibm.com/schema/extensions" ibmSchExtn:docRoot="true" name="FtoCResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="TemperatureInC" nillable="true" type="xsd:decimal"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>