-
Notifications
You must be signed in to change notification settings - Fork 1
/
nameSchema.xsd
47 lines (41 loc) · 1.84 KB
/
nameSchema.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:nameSchema" xmlns:tns="urn:nameSchema" elementFormDefault="qualified">
<element name="pmdset" type="tns:root"></element>
<complexType name="root">
<sequence>
<element name="rom" type="tns:rom"></element>
</sequence>
</complexType>
<complexType name="rom">
<sequence>
<element name="area" type="tns:area" maxOccurs="unbounded" minOccurs="0"></element>
</sequence>
<attribute name="id" type="string" use="required"></attribute>
</complexType>
<complexType name="area">
<sequence>
<element name="scene" type="tns:scene" maxOccurs="unbounded"
minOccurs="0">
</element>
</sequence>
<attribute name="name" type="string" use="required"></attribute>
<attribute name="offset" type="hexBinary" use="required"></attribute>
<attribute name="map" type="hexBinary"></attribute>
<attribute name="type" type="int"></attribute>
<attribute name="parts" type="string" use="optional"></attribute>
<attribute name="assem" type="hexBinary"></attribute>
</complexType>
<complexType name="scene">
<sequence>
<element name="call" type="tns:leafTag" maxOccurs="unbounded" minOccurs="0"></element>
<element name="action" type="tns:leafTag" maxOccurs="unbounded" minOccurs="0"></element>
</sequence>
<attribute name="name" type="string" use="required"></attribute>
<attribute name="offset" type="hexBinary" use="required"></attribute>
<attribute name="debug" type="string" use="optional"></attribute>
</complexType>
<complexType name="leafTag">
<attribute name="name" type="string" use="required"></attribute>
<attribute name="offset" type="hexBinary" use="required"></attribute>
</complexType>
</schema>