shadowbrokers-exploits/windows/Resources/Ep/Commands/Schemas/remotechannels.xs

56 lines
2 KiB
Text
Raw Normal View History

<?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:element ref="Autoload" minOccurs="0" maxOccurs="unbounded" />
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="Error" />
<xs:element ref="Channels" />
</xs:choice>
<xs:choice>
<xs:element ref="Success" />
<xs:element ref="Failure" />
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Channels">
<xs:complexType>
<xs:sequence>
<xs:element name="Channel" form="qualified" maxOccurs="unbounded" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element form="qualified" name="Released" type="feEmptyElement" minOccurs="0"/>
<xs:element form="qualified" name="Local" type="feEmptyElement" minOccurs="0"/>
<xs:element form="qualified" name="Function" type="feHex" />
<xs:element form="qualified" name="Sent" type="transferType" />
<xs:element form="qualified" name="Received" type="transferType" />
</xs:sequence>
<xs:attribute name="id" type="xs:nonNegativeInteger" use="required" />
<xs:attribute name="request" type="xs:nonNegativeInteger" use="required" />
<xs:attribute name="commandRequest" type="xs:nonNegativeInteger" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="lptimestamp" use="required" type="xs:dateTime" />
</xs:complexType>
</xs:element>
<xs:complexType name="transferType">
<xs:attribute name="total" use="required" type="xs:nonNegativeInteger" />
<xs:attribute name="ratio" use="required" type="xs:nonNegativeInteger" />
</xs:complexType>
</xs:schema>