ipfstartup.xsd 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: ccllogging
  5. (C) Copyright IBM Corp. 2005, 2010
  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" elementFormDefault="qualified" xmlns="http://developer.cognos.com/schemas/ccllogging/1/" targetNamespace="http://developer.cognos.com/schemas/ccllogging/1/">
  9. <xs:complexType name="componentType">
  10. <xs:attribute name="id" use="required"/>
  11. </xs:complexType>
  12. <xs:complexType name="processType">
  13. <xs:sequence>
  14. <xs:element name="service" type="serviceType" maxOccurs="unbounded"/>
  15. </xs:sequence>
  16. <xs:attribute name="id" use="required">
  17. <xs:simpleType>
  18. <xs:restriction base="xs:NMTOKEN">
  19. <xs:enumeration value="cpp"/>
  20. <xs:enumeration value="java"/>
  21. </xs:restriction>
  22. </xs:simpleType>
  23. </xs:attribute>
  24. </xs:complexType>
  25. <xs:complexType name="serviceType">
  26. <xs:sequence>
  27. <xs:element name="component" type="componentType" maxOccurs="unbounded"/>
  28. </xs:sequence>
  29. <xs:attribute name="id" use="required"/>
  30. </xs:complexType>
  31. <xs:element name="services">
  32. <xs:complexType>
  33. <xs:sequence>
  34. <xs:element name="process" type="processType" maxOccurs="unbounded"/>
  35. </xs:sequence>
  36. </xs:complexType>
  37. </xs:element>
  38. </xs:schema>