41 lines
1.1 KiB
Text
41 lines
1.1 KiB
Text
<?xml version="1.0"?>
|
|
<xs:schema targetNamespace="urn:ddb:expandingpulley"
|
|
xmlns='urn:ddb:expandingpulley'
|
|
xmlns:xs="http://www.w3.org/2001/XMLSchema" >
|
|
|
|
<xs:include schemaLocation="commonDefs.xs" />
|
|
|
|
<xs:element name="Data">
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element ref="Instance" />
|
|
<xs:element ref="Command"/>
|
|
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
<xs:element ref="Environment"/>
|
|
<xs:element ref="Error" />
|
|
</xs:choice>
|
|
<xs:choice>
|
|
<xs:element ref="Success" />
|
|
<xs:element ref="Failure" />
|
|
</xs:choice>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
|
|
<xs:element name='Environment'>
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element ref='Name'/>
|
|
<xs:element ref='Value'/>
|
|
<xs:element ref='Static' minOccurs='0' maxOccurs='1'/>
|
|
</xs:sequence>
|
|
|
|
<xs:attribute name='lptimestamp' type='xs:dateTime' use='required'/>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
|
|
<xs:element name='Name' type='xs:string'/>
|
|
<xs:element name='Value' type='xs:string'/>
|
|
<xs:element name='Static'/>
|
|
|
|
</xs:schema>
|