-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbusRequest.xsd
More file actions
21 lines (21 loc) · 1.19 KB
/
Copy pathbusRequest.xsd
File metadata and controls
21 lines (21 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8" ?>
<!--Created with Liquid Studio 2017 - Developer Bundle Edition (Education) 15.1.16.7872 (https://www.liquid-technologies.com)-->
<xs:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="busRequest">
<xs:complexType>
<xs:sequence>
<xs:element name="station" type="xs:string" minOccurs="1" maxOccurs="1" />
<xs:element name="reason" type="xs:string" minOccurs="1" maxOccurs="1" />
<xs:element name="timestamp" type="xs:dateTime" minOccurs="1" maxOccurs="1" />
<xs:element name="coords" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="lat" type="xs:decimal" minOccurs="0" />
<xs:element name="long" type="xs:decimal" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>