blob: 2850c3a891d5e226a65b94520cb6cdd650c38888 (
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
|
<?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>
XML Schema content models for SCXML
* scxml.extra.content
* content
* scxml.extra.attribs
Defines SCXML shared content models.
</xsd:documentation>
<xsd:documentation source="scxml-copyright.xsd"/>
</xsd:annotation>
<xsd:attributeGroup name="scxml.extra.attribs">
<xsd:annotation>
<xsd:documentation>group allowing attributes from other namespaces</xsd:documentation>
</xsd:annotation>
<xsd:anyAttribute namespace="##other" processContents="lax"/>
</xsd:attributeGroup>
<xsd:group name="scxml.extra.content">
<xsd:annotation>
<xsd:documentation>
group allowing elements from other namespaces
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:group>
</xsd:schema>
|