forked from ILIAS-eLearning/ILIAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathilias_poll_4_3.xsd
52 lines (44 loc) · 1.57 KB
/
ilias_poll_4_3.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
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns = 'http://www.w3.org/2001/XMLSchema'
targetNamespace = "http://www.ilias.de/Modules/Poll/poll/4_3"
xmlns:t = 'http://www.ilias.de/Modules/Poll/poll/4_3'>
<!-- t:Data type -->
<complexType name='Data' mixed='true'>
</complexType>
<!-- Poll -->
<element name='Poll'>
<complexType>
<sequence>
<element ref='t:Id' minOccurs='1' maxOccurs='1'/>
<element ref='t:Title' minOccurs='1' maxOccurs='1'/>
<element ref='t:Description' minOccurs='1' maxOccurs='1'/>
<element ref='t:Question' minOccurs='1' maxOccurs='1'/>
<element ref='t:Image' minOccurs='1' maxOccurs='1'/>
<element ref='t:ViewResults' minOccurs='1' maxOccurs='1'/>
<element ref='t:Dir' minOccurs='1' maxOccurs='1'/>
</sequence>
</complexType>
</element>
<element name='Id' type='t:Data' />
<element name='Title' type='t:Data' />
<element name='Description' type='t:Data' />
<element name='Question' type='t:Data' />
<element name='Image' type='t:Data' />
<element name='ViewResults' type='t:Data' />
<element name='Dir' type='t:Data' />
<!-- BlogAnswer -->
<element name='PollAnswer'>
<complexType>
<sequence>
<element ref='t:Id' minOccurs='1' maxOccurs='1'/>
<element ref='t:PollId' minOccurs='1' maxOccurs='1'/>
<element ref='t:Answer' minOccurs='1' maxOccurs='1'/>
<element ref='t:Pos' minOccurs='1' maxOccurs='1'/>
</sequence>
</complexType>
</element>
<element name='Id' type='t:Data' />
<element name='PollId' type='t:Data' />
<element name='Answer' type='t:Data' />
<element name='Pos' type='t:Data' />
</schema>