blob: 61df4dd848876b06afc66587f5d1c0f08cd76269 (
plain) (
tree)
|
|
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:include schemaLocation="common.refs.xsd"/>
<xs:element name="comref">
<xs:complexType>
<xs:sequence>
<xs:element ref="header"/>
<xs:element ref="com"/>
<xs:element ref="comsummary"/>
<xs:element ref="description"/>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="section"/>
<xs:element ref="funcs"/>
</xs:choice>
<xs:element ref="authors"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="com" type="xs:string"/>
<xs:element name="comsummary" type="xs:string"/>
<!--
`name' is used in common.refs.dtd and must therefore
be defined in each *ref. dtd
-->
<xs:element name="name" type="xs:string"/>
</xs:schema>
|