drillsrvProperty.xsd 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. * IBM Confidential
  4. *
  5. * OCO Source Materials
  6. *
  7. * IBM Cognos Products: drillsrv
  8. *
  9. * (C) Copyright IBM Corp. 2014
  10. *
  11. * The source code for this program is not published or otherwise divested of its trade
  12. * secrets, irrespective of what has been deposited with the U.S. Copyright Office.
  13. -->
  14. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
  15. <xs:element name="drillsrv_property">
  16. <xs:annotation>
  17. <xs:documentation>Comment describing your root element</xs:documentation>
  18. </xs:annotation>
  19. <xs:complexType>
  20. <xs:sequence>
  21. <xs:element name="structure" maxOccurs="unbounded">
  22. <xs:complexType>
  23. <xs:sequence minOccurs="0">
  24. <xs:element name="property" minOccurs="0">
  25. <xs:complexType>
  26. <xs:simpleContent>
  27. <xs:extension base="xs:string">
  28. <xs:attribute name="type" type="xs:string" use="optional"/>
  29. </xs:extension>
  30. </xs:simpleContent>
  31. </xs:complexType>
  32. </xs:element>
  33. <xs:element name="value" minOccurs="0">
  34. <xs:complexType>
  35. <xs:simpleContent>
  36. <xs:extension base="xs:string">
  37. <xs:attribute name="type" type="xs:string" use="optional"/>
  38. </xs:extension>
  39. </xs:simpleContent>
  40. </xs:complexType>
  41. </xs:element>
  42. </xs:sequence>
  43. </xs:complexType>
  44. </xs:element>
  45. </xs:sequence>
  46. </xs:complexType>
  47. </xs:element>
  48. </xs:schema>