123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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" elementFormDefault="qualified" attributeFormDefault="unqualified">
- <xs:element name="filelist">
- <xs:annotation>
- <xs:documentation>Defines the files that should be scrutinized for function definitions. There are two types of files, the one contains the function definitions in a hierarchical structure, the other has the language sensitive information in the Cognos Message file format.</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:sequence>
- <xs:element name="definition" type="name" minOccurs="0" maxOccurs="unbounded">
- <xs:annotation>
- <xs:documentation>Defines the XML files that contain function definitions in a hierarchical structure.</xs:documentation>
- </xs:annotation>
- </xs:element>
- <xs:element name="description" minOccurs="0" maxOccurs="unbounded">
- <xs:annotation>
- <xs:documentation>Defines the XML files that contain locale-specific documentation (name, tip, syntax) for function definitions.</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:sequence>
- <xs:element name="language" type="xs:language">
- <xs:annotation>
- <xs:documentation>Identifies language of the documentation.</xs:documentation>
- </xs:annotation>
- </xs:element>
- <xs:element name="file" type="name" maxOccurs="unbounded">
- <xs:annotation>
- <xs:documentation>Defines the XML files that contain documentation strings for given language.</xs:documentation>
- </xs:annotation>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <!-- ============================================================================================== -->
- <xs:complexType name="name" mixed="true">
- <xs:annotation>
- <xs:documentation>A name. Context depends upon whee this type is used.</xs:documentation>
- </xs:annotation>
- <xs:simpleContent>
- <xs:extension base="xs:string"/>
- </xs:simpleContent>
- </xs:complexType>
- </xs:schema>
|