1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: ccllogging
- (C) Copyright IBM Corp. 2005, 2010
- 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" elementFormDefault="qualified" xmlns="http://developer.cognos.com/schemas/ccllogging/1/" targetNamespace="http://developer.cognos.com/schemas/ccllogging/1/">
- <xs:complexType name="componentType">
- <xs:attribute name="id" use="required"/>
- </xs:complexType>
- <xs:complexType name="processType">
- <xs:sequence>
- <xs:element name="service" type="serviceType" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute name="id" use="required">
- <xs:simpleType>
- <xs:restriction base="xs:NMTOKEN">
- <xs:enumeration value="cpp"/>
- <xs:enumeration value="java"/>
- </xs:restriction>
- </xs:simpleType>
- </xs:attribute>
- </xs:complexType>
- <xs:complexType name="serviceType">
- <xs:sequence>
- <xs:element name="component" type="componentType" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute name="id" use="required"/>
- </xs:complexType>
- <xs:element name="services">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="process" type="processType" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:schema>
|