summaryrefslogtreecommitdiffstats
path: root/test/schema/scxml-module-data.xsd
blob: ec96e714d6e14f51e9fe0e83f286948dc7bf4813 (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.w3.org/2005/07/scxml"
    xmlns="http://www.w3.org/2005/07/scxml"
    elementFormDefault="qualified">
	<xsd:annotation>
		<xsd:documentation>
            This is the XML Schema data module for SCXML
            * datamodel 
            * data
            * assign
            * param
            * script
            * content
            The data module defines these elements and their
            attributes.
        </xsd:documentation>
		<xsd:documentation source="scxml-copyright.xsd"/>
	</xsd:annotation>

	<xsd:include schemaLocation="scxml-datatypes.xsd">
		<xsd:annotation>
			<xsd:documentation>
                This module defines SCXML Attribute DataTypes
            </xsd:documentation>
		</xsd:annotation>
	</xsd:include>

	<xsd:include schemaLocation="scxml-attribs.xsd">
		<xsd:annotation>
			<xsd:documentation>
                This module defines Common attributes for SCXML
            </xsd:documentation>
		</xsd:annotation>
	</xsd:include>

	<xsd:include schemaLocation="scxml-contentmodels.xsd">
		<xsd:annotation>
			<xsd:documentation>
                This module defines Common content model extensions  for SCXML
            </xsd:documentation>
		</xsd:annotation>
	</xsd:include>

	<!-- datamodel -->
	<xsd:attributeGroup name="scxml.datamodel.attlist">
		<xsd:attributeGroup ref="scxml.extra.attribs"/>
	</xsd:attributeGroup>
	<xsd:group name="scxml.datamodel.content">
		<xsd:sequence>
			<xsd:element ref="data" minOccurs="0" maxOccurs="unbounded"/>
			<xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:group>
	<xsd:complexType name="scxml.datamodel.type">
		<xsd:group ref="scxml.datamodel.content"/>
		<xsd:attributeGroup ref="scxml.datamodel.attlist"/>
	</xsd:complexType>
	<xsd:element name="datamodel" type="scxml.datamodel.type"/>

	<!-- data -->
	<xsd:attributeGroup name="scxml.data.attlist">
		<xsd:attribute name="id" type="xsd:ID" use="required"/>
		<xsd:attribute name="src" type="URI.datatype"/>
		<xsd:attribute name="expr" type="ValueLang.datatype"/>
		<xsd:attributeGroup ref="scxml.extra.attribs"/>
	</xsd:attributeGroup>
	<xsd:group name="scxml.data.content">
		<xsd:sequence>
			<xsd:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:group>
	<xsd:complexType name="scxml.data.type" mixed="true">
		<xsd:group ref="scxml.data.content"/>
		<xsd:attributeGroup ref="scxml.data.attlist"/>
	</xsd:complexType>
	<xsd:element name="data" type="scxml.data.type"/>

	

	<!-- param -->
	<xsd:attributeGroup name="scxml.param.attlist">
		<xsd:attribute name="name" type="xsd:NMTOKEN" use="required"/>
		<xsd:attribute name="expr" type="ValueLang.datatype"/>
		<xsd:attribute name="location" type="LocLang.datatype"/>
		<xsd:attributeGroup ref="scxml.extra.attribs"/>
	</xsd:attributeGroup>
	<xsd:group name="scxml.param.content">
		<xsd:sequence>
			<xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:group>
	<xsd:complexType name="scxml.param.type">
		<xsd:group ref="scxml.param.content"/>
		<xsd:attributeGroup ref="scxml.param.attlist"/>
	</xsd:complexType>
	<xsd:element name="param" type="scxml.param.type"/>

<!--  assign  -->
	<xsd:attributeGroup name="scxml.assign.attlist">
		<xsd:attribute name="location" type="LocLang.datatype" use="required"/>
		<xsd:attribute name="expr" type="ValueLang.datatype"/>
		<xsd:attribute name="type" type="AssignType.datatype" default="replacechildren"/>
		<xsd:attribute name="attr" type="xsd:NMTOKEN"/>
		<xsd:attributeGroup ref="scxml.extra.attribs"/>
	</xsd:attributeGroup>
	<xsd:group name="scxml.assign.content">
		<xsd:sequence>
			<xsd:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:group>
	<xsd:complexType name="scxml.assign.type" mixed="true">
		<xsd:group ref="scxml.assign.content"/>
		<xsd:attributeGroup ref="scxml.assign.attlist"/>
	</xsd:complexType>
	<xsd:element name="assign" type="scxml.assign.type"/>

	
<!-- script -->	
	<xsd:attributeGroup name="scxml.script.attlist">
		<xsd:attribute name="src" type="URI.datatype"/>
		<xsd:attributeGroup ref="scxml.extra.attribs"/>
	</xsd:attributeGroup>
	<xsd:group name="scxml.script.content">
		<xsd:sequence>
			<xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:group>
	<xsd:complexType name="scxml.script.type" mixed="true">
		<xsd:group ref="scxml.script.content"/>
		<xsd:attributeGroup ref="scxml.script.attlist"/>
	</xsd:complexType>
	<xsd:element name="script" type="scxml.script.type"/>

	<!-- content -->
	<xsd:attributeGroup name="scxml.content.attlist">
		<xsd:attributeGroup ref="scxml.extra.attribs"/>
		<xsd:attribute name="expr" type="ValueLang.datatype"/>
	</xsd:attributeGroup>
	<xsd:group name="scxml.content.content">
		<xsd:sequence>
		<xsd:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:group>
	<xsd:complexType name="scxml.content.type" mixed="true">
		<xsd:group ref="scxml.content.content"/>
		<xsd:attributeGroup ref="scxml.content.attlist"/>
	</xsd:complexType>
	<xsd:element name="content" type="scxml.content.type"/>
	
</xsd:schema>