123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- BI and PM: QECL
- (C) Copyright IBM Corp. 2005, 2009
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:element name="entry">
- <xs:complexType>
- <xs:attribute name="value" type="xs:string" use="required"/>
- <xs:attribute name="name" type="xs:string" use="required"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="RS">
- <xs:complexType>
- <xs:sequence>
- <xs:element ref="C" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute name="et" type="xs:int" use="required"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="RQ">
- <xs:complexType>
- <xs:sequence>
- <xs:element ref="C" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute name="n" type="xs:string" use="required"/>
- <xs:attribute name="et" type="xs:int" use="required"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="RP">
- <xs:complexType>
- <xs:sequence>
- <xs:element ref="RC"/>
- <xs:element ref="RS"/>
- <xs:element ref="RQ" maxOccurs="unbounded"/>
- <xs:element ref="requestID"/>
- <xs:element ref="sessionID"/>
- </xs:sequence>
- <xs:attribute name="status" type="xs:string" use="required"/>
- <xs:attribute name="st" type="xs:dateTime" use="required"/>
- <xs:attribute name="rN" type="xs:int" use="required"/>
- <xs:attribute name="n" type="xs:string" use="required"/>
- <xs:attribute name="et" type="xs:dateTime" use="required"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="RC">
- <xs:simpleType>
- <xs:restriction base="xs:string"/>
- </xs:simpleType>
- </xs:element>
- <xs:element name="requestID">
- <xs:simpleType>
- <xs:restriction base="xs:string"/>
- </xs:simpleType>
- </xs:element>
- <xs:element name="sessionID">
- <xs:simpleType>
- <xs:restriction base="xs:string"/>
- </xs:simpleType>
- </xs:element>
- <xs:element name="PerformanceData">
- <xs:complexType>
- <xs:sequence>
- <xs:element ref="ElementAndAttributeIndex"/>
- <xs:element ref="RP" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute name="PID" type="xs:string" use="required"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="LMs">
- <xs:complexType>
- <xs:sequence>
- <xs:element ref="LM" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="LM">
- <xs:simpleType>
- <xs:restriction base="xs:string"/>
- </xs:simpleType>
- </xs:element>
- <xs:element name="Elements">
- <xs:complexType>
- <xs:sequence>
- <xs:element ref="entry" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="ElementAndAttributeIndex">
- <xs:complexType>
- <xs:sequence>
- <xs:element ref="Elements"/>
- <xs:element ref="Attributes"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="CF">
- <xs:complexType>
- <xs:attribute name="nc" type="xs:int" use="required"/>
- <xs:attribute name="n" type="xs:string" use="required"/>
- <xs:attribute name="et" type="xs:int" use="required"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="C">
- <xs:complexType>
- <xs:sequence>
- <xs:element ref="CF" maxOccurs="unbounded"/>
- <xs:element ref="LMs"/>
- </xs:sequence>
- <xs:attribute name="n" type="xs:string" use="required"/>
- <xs:attribute name="et" type="xs:int" use="required"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="Attributes">
- <xs:complexType>
- <xs:sequence>
- <xs:element ref="entry" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:schema>
|