-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswytch.xsd
28 lines (28 loc) · 1.04 KB
/
swytch.xsd
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
<?xml version="1.0" encoding="UTF-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="http_methods">
<xs:choice>
<xs:element name="GET"/>
<xs:element name="POST"/>
<xs:element name="PUT"/>
<xs:element name="DELETE"/>
</xs:choice>
</xs:complexType>
<xs:element name="route">
<xs:complexType>
<xs:attribute name="path" type="xs:string" use="required"/>
<xs:attribute name="method" type="http_methods" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="defaultRoute">
<xs:complexType>
<xs:attribute name="path" type="xs:string" use="prohibited"/>
<xs:attribute name="method" type="http_methods" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="fragment">
<xs:complexType>
<xs:attribute name="id" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:schema>