123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- <?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 core module for SCXML
- * scxml
- * state
- * initial
- * onexit
- * onentry
- * transition
- * parallel
- * final
- * history
- * donedata
- * if
- * elsif
- * else
- * foreach
- * raise
- * log
- The core module defines these elements and the
- attributes.
- </xsd:documentation>
- <xsd:documentation source="scxml-copyright.xsd"/>
- </xsd:annotation>
- <xsd:include schemaLocation="scxml-datatypes.xsd">
- <xsd:annotation>
- <xsd:documentation>
- Includes common SCXML datatypes
- </xsd:documentation>
- </xsd:annotation>
- </xsd:include>
- <xsd:include schemaLocation="scxml-attribs.xsd">
- <xsd:annotation>
- <xsd:documentation>
- Includes common SCXML attributes
- </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>
-
- <!-- scxml -->
- <xsd:attributeGroup name="scxml.scxml.attlist">
- <xsd:attribute name="initial" type="xsd:IDREFS"/>
- <xsd:attribute name="name" type="xsd:NMTOKEN"/>
- <xsd:attribute name="version" type="xsd:decimal" use="required" fixed="1.0"/>
- <xsd:attribute name="datamodel" type="xsd:NMTOKEN" default="null" use="optional"/>
- <xsd:attribute name="binding" type="Binding.datatype"/>
- <xsd:attribute name="exmode" type="Exmode.datatype"/>
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.scxml.mix">
- <xsd:choice>
- <xsd:element ref="state" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="parallel" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="final" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="datamodel" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="script" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:choice>
- </xsd:group>
- <xsd:group name="scxml.scxml.content">
- <xsd:sequence>
- <xsd:group ref="scxml.scxml.mix" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.scxml.type">
- <xsd:group ref="scxml.scxml.content"/>
- <xsd:attributeGroup ref="scxml.scxml.attlist"/>
- </xsd:complexType>
- <xsd:element name="scxml" type="scxml.scxml.type"/>
- <!-- state -->
- <xsd:attributeGroup name="scxml.state.attlist">
- <xsd:attribute name="id" type="xsd:ID"/>
- <xsd:attribute name="initial" type="xsd:IDREFS"/>
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.state.mix">
- <xsd:choice>
- <xsd:element ref="onentry" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="onexit" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="transition" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="initial" minOccurs="0" maxOccurs="1"/>
- <xsd:element ref="state" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="parallel" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="final" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="history" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="datamodel" minOccurs="0" maxOccurs="1"/>
- <xsd:element ref="invoke" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:choice>
- </xsd:group>
- <xsd:group name="scxml.state.content">
- <xsd:sequence>
- <xsd:group ref="scxml.state.mix" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.state.type">
- <xsd:sequence>
- <xsd:group ref="scxml.state.content"/>
- </xsd:sequence>
- <xsd:attributeGroup ref="scxml.state.attlist"/>
- <xsd:assert test="not(@initial and initial)" xpathDefaultNamespace="##targetNamespace"/>
- <xsd:assert test="if(@initial or initial) then (state | parallel) else true()" xpathDefaultNamespace="##targetNamespace"/>
- <xsd:assert test="every $init in @initial satisfies (some $state in (.//state | .//parallel) satisfies ($state/@id = $init))" xpathDefaultNamespace="##targetNamespace"/>
- <xsd:assert test="if (initial) then (every $targ in initial/transition/@target satisfies (some $state in (.//state | .//parallel) satisfies ($state/@id = $targ))) else true()" xpathDefaultNamespace="##targetNamespace"/>
- <xsd:assert test="if(history/@type='shallow') then (every $targ in history/transition/@target satisfies
- (some $state in (state |parallel) satisfies ($state/@id = $targ)))
- else if (history/@type='deep') then (every $targ in history/transition/@target satisfies
- (some $state in (.//state | .//parallel) satisfies ($state/@id = $targ)))
- else true()" xpathDefaultNamespace="##targetNamespace"/>
- </xsd:complexType>
- <xsd:element name="state" type="scxml.state.type"/>
- <!-- initial -->
- <xsd:attributeGroup name="scxml.initial.attlist">
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.initial.content">
- <xsd:sequence>
- <xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="transition" minOccurs="1" maxOccurs="1"/>
- <xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.initial.type">
- <xsd:group ref="scxml.initial.content"/>
- <xsd:attributeGroup ref="scxml.initial.attlist"/>
- </xsd:complexType>
- <xsd:element name="initial" type="scxml.initial.type"/>
- <!-- onentry -->
- <xsd:attributeGroup name="scxml.onentry.attlist">
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.onentry.content">
- <xsd:sequence>
- <xsd:group ref="scxml.core.executablecontent" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.onentry.type">
- <xsd:group ref="scxml.onentry.content"/>
- <xsd:attributeGroup ref="scxml.onentry.attlist"/>
- </xsd:complexType>
- <xsd:element name="onentry" type="scxml.onentry.type"/>
- <!-- onexit -->
- <xsd:attributeGroup name="scxml.onexit.attlist">
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.onexit.content">
- <xsd:sequence>
- <xsd:group ref="scxml.core.executablecontent" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.onexit.type">
- <xsd:group ref="scxml.onexit.content"/>
- <xsd:attributeGroup ref="scxml.onexit.attlist"/>
- </xsd:complexType>
- <xsd:element name="onexit" type="scxml.onexit.type"/>
- <!-- transition -->
- <xsd:attributeGroup name="scxml.transition.attlist">
- <xsd:attribute name="event" type="EventTypes.datatype"/>
- <xsd:attribute name="cond" type="CondLang.datatype"/>
- <xsd:attribute name="target" type="xsd:IDREFS"/>
- <xsd:attribute name="type" type="TransitionType.datatype"/>
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.transition.content">
- <xsd:sequence>
- <xsd:group ref="scxml.core.executablecontent" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.transition.type">
- <xsd:group ref="scxml.transition.content"/>
- <xsd:attributeGroup ref="scxml.transition.attlist"/>
- <xsd:assert test="(@event or @cond or @target)" xpathDefaultNamespace="##targetNamespace"/>
- </xsd:complexType>
- <xsd:element name="transition" type="scxml.transition.type"/>
- <!-- parallel -->
- <xsd:attributeGroup name="scxml.parallel.attlist">
- <xsd:attribute name="id" type="xsd:ID"/>
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.parallel.mix">
- <xsd:choice>
- <xsd:element ref="onentry" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="onexit" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="transition" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="state" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="parallel" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="history" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="datamodel" minOccurs="0" maxOccurs="1"/>
- <xsd:element ref="invoke" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:choice>
- </xsd:group>
- <xsd:group name="scxml.parallel.content">
- <xsd:sequence>
- <xsd:group ref="scxml.parallel.mix" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.parallel.type">
- <xsd:group ref="scxml.parallel.content"/>
- <xsd:attributeGroup ref="scxml.parallel.attlist"/>
- <xsd:assert test="if(history/@type='shallow') then (every $targ in history/transition/@target satisfies
- (some $state in (state |parallel) satisfies ($state/@id = $targ)))
- else if (history/@type='deep') then (every $targ in history/transition/@target satisfies
- (some $state in (.//state | .//parallel) satisfies ($state/@id = $targ)))
- else true()" xpathDefaultNamespace="##targetNamespace"/>
- </xsd:complexType>
- <xsd:element name="parallel" type="scxml.parallel.type"/>
- <!-- final -->
- <xsd:attributeGroup name="scxml.final.attlist">
- <xsd:attribute name="id" type="xsd:ID"/>
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.final.mix">
- <xsd:choice>
- <xsd:element ref="onentry" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="onexit" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="donedata" minOccurs="0" maxOccurs="1"/>
- <xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:choice>
- </xsd:group>
- <xsd:group name="scxml.final.content">
- <xsd:sequence>
- <xsd:group ref="scxml.final.mix" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.final.type">
- <xsd:group ref="scxml.final.content"/>
- <xsd:attributeGroup ref="scxml.final.attlist"/>
- </xsd:complexType>
- <xsd:element name="final" type="scxml.final.type"/>
- <!-- history -->
- <xsd:attributeGroup name="scxml.history.attlist">
- <xsd:attribute name="id" type="xsd:ID"/>
- <xsd:attribute name="type" type="HistoryType.datatype"/>
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.history.content">
- <xsd:sequence>
- <xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element ref="transition" minOccurs="1" maxOccurs="1"/>
- <xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.history.type">
- <xsd:group ref="scxml.history.content"/>
- <xsd:attributeGroup ref="scxml.history.attlist"/>
- <xsd:assert test="not(transition/@cond or transition/@event)" xpathDefaultNamespace="##targetNamespace"/>
- </xsd:complexType>
- <xsd:element name="history" type="scxml.history.type"/>
-
- <!-- donedata -->
- <xsd:attributeGroup name="scxml.donedata.attlist">
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.donedata.content">
- <xsd:sequence>
- <xsd:choice>
- <xsd:element ref="content" minOccurs="1" maxOccurs="1"/>
- <xsd:element ref="param" minOccurs="1" maxOccurs="unbounded"/>
- </xsd:choice>
- <xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.donedata.type">
- <xsd:group ref="scxml.donedata.content"/>
- <xsd:attributeGroup ref="scxml.donedata.attlist"/>
- </xsd:complexType>
- <xsd:element name="donedata" type="scxml.donedata.type"/>
-
- <!-- if -->
- <xsd:attributeGroup name="scxml.if.attlist">
- <xsd:attribute name="cond" type="CondLang.datatype" use="required"/>
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.if.elseif.mix">
- <xsd:sequence>
- <xsd:element ref="elseif" />
- <xsd:group ref="scxml.core.executablecontent" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:group name="scxml.if.else.mix">
- <xsd:sequence>
- <xsd:element ref="else" />
- <xsd:group ref="scxml.core.executablecontent" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:group name="scxml.if.content">
- <xsd:sequence>
- <xsd:group ref="scxml.core.executablecontent" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:group ref="scxml.if.elseif.mix" minOccurs="0" maxOccurs="1"/>
- <xsd:group ref="scxml.if.else.mix" minOccurs="0" maxOccurs="1"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.if.type">
- <xsd:group ref="scxml.if.content"/>
- <xsd:attributeGroup ref="scxml.if.attlist"/>
- </xsd:complexType>
- <xsd:element name="if" type="scxml.if.type"/>
- <!-- elseif -->
- <xsd:attributeGroup name="scxml.elseif.attlist">
- <xsd:attribute name="cond" type="CondLang.datatype" use="required"/>
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.elseif.mix">
- <xsd:choice>
- <!-- No content for this element -->
- </xsd:choice>
- </xsd:group>
- <xsd:group name="scxml.elseif.content">
- <xsd:sequence>
- <xsd:group ref="scxml.elseif.mix" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.elseif.type">
- <xsd:group ref="scxml.elseif.content"/>
- <xsd:attributeGroup ref="scxml.elseif.attlist"/>
- </xsd:complexType>
- <xsd:element name="elseif" type="scxml.elseif.type"/>
- <!-- else -->
- <xsd:attributeGroup name="scxml.else.attlist">
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.else.mix">
- <xsd:choice>
- <!-- No content for this element -->
- </xsd:choice>
- </xsd:group>
- <xsd:group name="scxml.else.content">
- <xsd:sequence>
- <xsd:group ref="scxml.else.mix" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.else.type">
- <xsd:group ref="scxml.else.content"/>
- <xsd:attributeGroup ref="scxml.else.attlist"/>
- </xsd:complexType>
- <xsd:element name="else" type="scxml.else.type"/>
- <!-- foreach -->
- <xsd:attributeGroup name="scxml.foreach.attlist">
- <xsd:attribute name="array" type="ValueLang.datatype" use="required"/>
- <xsd:attribute name="item" type="xsd:string" use="required"/>
- <xsd:attribute name="index" type="xsd:string"/>
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.foreach.content">
- <xsd:sequence>
- <xsd:group ref="scxml.core.executablecontent" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.foreach.type">
- <xsd:group ref="scxml.foreach.content"/>
- <xsd:attributeGroup ref="scxml.foreach.attlist"/>
- </xsd:complexType>
- <xsd:element name="foreach" type="scxml.foreach.type"/>
- <!-- raise -->
- <xsd:attributeGroup name="scxml.raise.attlist">
- <xsd:attribute name="event" type="xsd:NMTOKEN" use="required"/>
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.raise.mix">
- <xsd:choice>
- <!-- No content for this element -->
- </xsd:choice>
- </xsd:group>
- <xsd:group name="scxml.raise.content">
- <xsd:sequence>
- <xsd:group ref="scxml.raise.mix" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.raise.type">
- <xsd:group ref="scxml.raise.content"/>
- <xsd:attributeGroup ref="scxml.raise.attlist"/>
- </xsd:complexType>
- <xsd:element name="raise" type="scxml.raise.type"/>
- <!-- log -->
- <xsd:attributeGroup name="scxml.log.attlist">
- <xsd:attribute name="label" type="xsd:string"/>
- <xsd:attribute name="expr" type="ValueLang.datatype"/>
- <xsd:attributeGroup ref="scxml.extra.attribs"/>
- </xsd:attributeGroup>
- <xsd:group name="scxml.log.content">
- <xsd:sequence>
- <xsd:group ref="scxml.extra.content" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:group>
- <xsd:complexType name="scxml.log.type">
- <xsd:group ref="scxml.log.content"/>
- <xsd:attributeGroup ref="scxml.log.attlist"/>
- </xsd:complexType>
- <xsd:element name="log" type="scxml.log.type"/>
-
- </xsd:schema>
|