perfQFSDoc.xsd 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. BI and PM: QECL
  5. (C) Copyright IBM Corp. 2005, 2009
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  9. <xs:element name="entry">
  10. <xs:complexType>
  11. <xs:attribute name="value" type="xs:string" use="required"/>
  12. <xs:attribute name="name" type="xs:string" use="required"/>
  13. </xs:complexType>
  14. </xs:element>
  15. <xs:element name="RS">
  16. <xs:complexType>
  17. <xs:sequence>
  18. <xs:element ref="C" maxOccurs="unbounded"/>
  19. </xs:sequence>
  20. <xs:attribute name="et" type="xs:int" use="required"/>
  21. </xs:complexType>
  22. </xs:element>
  23. <xs:element name="RQ">
  24. <xs:complexType>
  25. <xs:sequence>
  26. <xs:element ref="C" maxOccurs="unbounded"/>
  27. </xs:sequence>
  28. <xs:attribute name="n" type="xs:string" use="required"/>
  29. <xs:attribute name="et" type="xs:int" use="required"/>
  30. </xs:complexType>
  31. </xs:element>
  32. <xs:element name="RP">
  33. <xs:complexType>
  34. <xs:sequence>
  35. <xs:element ref="RC"/>
  36. <xs:element ref="RS"/>
  37. <xs:element ref="RQ" maxOccurs="unbounded"/>
  38. <xs:element ref="requestID"/>
  39. <xs:element ref="sessionID"/>
  40. </xs:sequence>
  41. <xs:attribute name="status" type="xs:string" use="required"/>
  42. <xs:attribute name="st" type="xs:dateTime" use="required"/>
  43. <xs:attribute name="rN" type="xs:int" use="required"/>
  44. <xs:attribute name="n" type="xs:string" use="required"/>
  45. <xs:attribute name="et" type="xs:dateTime" use="required"/>
  46. </xs:complexType>
  47. </xs:element>
  48. <xs:element name="RC">
  49. <xs:simpleType>
  50. <xs:restriction base="xs:string"/>
  51. </xs:simpleType>
  52. </xs:element>
  53. <xs:element name="requestID">
  54. <xs:simpleType>
  55. <xs:restriction base="xs:string"/>
  56. </xs:simpleType>
  57. </xs:element>
  58. <xs:element name="sessionID">
  59. <xs:simpleType>
  60. <xs:restriction base="xs:string"/>
  61. </xs:simpleType>
  62. </xs:element>
  63. <xs:element name="PerformanceData">
  64. <xs:complexType>
  65. <xs:sequence>
  66. <xs:element ref="ElementAndAttributeIndex"/>
  67. <xs:element ref="RP" maxOccurs="unbounded"/>
  68. </xs:sequence>
  69. <xs:attribute name="PID" type="xs:string" use="required"/>
  70. </xs:complexType>
  71. </xs:element>
  72. <xs:element name="LMs">
  73. <xs:complexType>
  74. <xs:sequence>
  75. <xs:element ref="LM" maxOccurs="unbounded"/>
  76. </xs:sequence>
  77. </xs:complexType>
  78. </xs:element>
  79. <xs:element name="LM">
  80. <xs:simpleType>
  81. <xs:restriction base="xs:string"/>
  82. </xs:simpleType>
  83. </xs:element>
  84. <xs:element name="Elements">
  85. <xs:complexType>
  86. <xs:sequence>
  87. <xs:element ref="entry" maxOccurs="unbounded"/>
  88. </xs:sequence>
  89. </xs:complexType>
  90. </xs:element>
  91. <xs:element name="ElementAndAttributeIndex">
  92. <xs:complexType>
  93. <xs:sequence>
  94. <xs:element ref="Elements"/>
  95. <xs:element ref="Attributes"/>
  96. </xs:sequence>
  97. </xs:complexType>
  98. </xs:element>
  99. <xs:element name="CF">
  100. <xs:complexType>
  101. <xs:attribute name="nc" type="xs:int" use="required"/>
  102. <xs:attribute name="n" type="xs:string" use="required"/>
  103. <xs:attribute name="et" type="xs:int" use="required"/>
  104. </xs:complexType>
  105. </xs:element>
  106. <xs:element name="C">
  107. <xs:complexType>
  108. <xs:sequence>
  109. <xs:element ref="CF" maxOccurs="unbounded"/>
  110. <xs:element ref="LMs"/>
  111. </xs:sequence>
  112. <xs:attribute name="n" type="xs:string" use="required"/>
  113. <xs:attribute name="et" type="xs:int" use="required"/>
  114. </xs:complexType>
  115. </xs:element>
  116. <xs:element name="Attributes">
  117. <xs:complexType>
  118. <xs:sequence>
  119. <xs:element ref="entry" maxOccurs="unbounded"/>
  120. </xs:sequence>
  121. </xs:complexType>
  122. </xs:element>
  123. </xs:schema>