aboutsummaryrefslogtreecommitdiffstats
path: root/lib/docbuilder/xsd/appref.xsd
blob: b63839e494c47c7ec8cf8627dba76bf4426ad81f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?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"/>
  <!-- Structure -->
  <xs:element name="appref">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="header"/>
        <xs:element ref="app"/>
        <xs:element ref="appsummary"/>
        <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="app" type="xs:string"/>
  <xs:element name="appsummary" 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>