-
Notifications
You must be signed in to change notification settings - Fork 34
/
adlnav_v1p3.xsd
61 lines (52 loc) · 2.31 KB
/
adlnav_v1p3.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
53
54
55
56
57
58
59
60
61
<?xml version = "1.0"?>
<xs:schema targetNamespace = "http://www.adlnet.org/xsd/adlnav_v1p3"
xmlns:xs = "http://www.w3.org/2001/XMLSchema"
xmlns = "http://www.adlnet.org/xsd/adlnav_v1p3"
elementFormDefault = "qualified"
version = "1.0">
<xs:annotation>
<xs:documentation>
This file represents the W3C XML Schema Language Binding of the ADL namespaced elements for navigation controls.
</xs:documentation>
</xs:annotation>
<!-- *********************** -->
<!-- ** Change History ** -->
<!-- *********************** -->
<xs:annotation>
<xs:documentation>
*************************************************************************
* Change History *
*************************************************************************
2003-18-09 Initial creation.
2004-23-01 Final edits in preparation for release
2005-06-06 Added new hideLMSUI vocabulary token suspendAll, exitAll,
and abandonAll
*************************************************************************
</xs:documentation>
</xs:annotation>
<xs:element name = "presentation" type = "presentationType"/>
<xs:element name = "navigationInterface" type = "navigationInterfaceType"/>
<xs:element name = "hideLMSUI" type = "hideLMSUIType"/>
<!-- Navigation Extension -->
<xs:complexType name = "presentationType">
<xs:sequence>
<xs:element ref = "navigationInterface" minOccurs = "0" maxOccurs = "1"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name = "navigationInterfaceType">
<xs:sequence>
<xs:element ref = "hideLMSUI" minOccurs = "0" maxOccurs = "unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:simpleType name = "hideLMSUIType">
<xs:restriction base = "xs:token">
<xs:enumeration value = "abandon"/>
<xs:enumeration value = "continue"/>
<xs:enumeration value = "exit"/>
<xs:enumeration value = "previous"/>
<xs:enumeration value = "suspendAll"/>
<xs:enumeration value = "exitAll"/>
<xs:enumeration value = "abandonAll"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>