| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <s:schema elementFormDefault="qualified" targetNamespace="http://www.webservicex.net" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.webservicex.net"> |
| <s:element name="GetWeatherByZipCode"> |
| <s:complexType> |
| <s:sequence> |
| <s:element minOccurs="0" maxOccurs="1" name="ZipCode" type="s:string" /> |
| </s:sequence> |
| </s:complexType> |
| </s:element> |
| <s:element name="GetWeatherByZipCodeResponse"> |
| <s:complexType> |
| <s:sequence> |
| <s:element minOccurs="1" maxOccurs="1" name="GetWeatherByZipCodeResult" |
| type="tns:WeatherForecasts" /> |
| </s:sequence> |
| </s:complexType> |
| </s:element> |
| <s:complexType name="WeatherForecasts"> |
| <s:sequence> |
| <s:element minOccurs="1" maxOccurs="1" name="Latitude" type="s:float" /> |
| <s:element minOccurs="1" maxOccurs="1" name="Longitude" type="s:float" /> |
| <s:element minOccurs="1" maxOccurs="1" name="AllocationFactor" type="s:float" /> |
| <s:element minOccurs="0" maxOccurs="1" name="FipsCode" type="s:string" /> |
| <s:element minOccurs="0" maxOccurs="1" name="PlaceName" type="s:string" /> |
| <s:element minOccurs="0" maxOccurs="1" name="StateCode" type="s:string" /> |
| <s:element minOccurs="0" maxOccurs="1" name="Status" type="s:string" /> |
| </s:sequence> |
| </s:complexType> |
| <s:complexType name="WeatherData"> |
| <s:sequence> |
| <s:element minOccurs="0" maxOccurs="1" name="Day" type="s:string" /> |
| <s:element minOccurs="0" maxOccurs="1" name="WeatherImage" type="s:string" /> |
| <s:element minOccurs="0" maxOccurs="1" name="MaxTemperatureF" type="s:string" /> |
| <s:element minOccurs="0" maxOccurs="1" name="MinTemperatureF" type="s:string" /> |
| <s:element minOccurs="0" maxOccurs="1" name="MaxTemperatureC" type="s:string" /> |
| <s:element minOccurs="0" maxOccurs="1" name="MinTemperatureC" type="s:string" /> |
| </s:sequence> |
| </s:complexType> |
| <s:element name="GetWeatherByPlaceName"> |
| <s:complexType> |
| <s:sequence> |
| <s:element minOccurs="0" maxOccurs="1" name="PlaceName" type="s:string" /> |
| </s:sequence> |
| </s:complexType> |
| </s:element> |
| <s:element name="GetWeatherByPlaceNameResponse"> |
| <s:complexType> |
| <s:sequence> |
| <s:element minOccurs="1" maxOccurs="1" name="GetWeatherByPlaceNameResult" |
| type="tns:WeatherForecasts" /> |
| </s:sequence> |
| </s:complexType> |
| </s:element> |
| <s:element name="WeatherForecasts" type="tns:WeatherForecasts" /> |
| </s:schema> |