File: index.xsd

package info (click to toggle)
phpdox 0.12.0-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 7,672 kB
  • sloc: xml: 80,724; php: 9,167; makefile: 13
file content (52 lines) | stat: -rw-r--r-- 2,055 bytes parent folder | download | duplicates (5)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
           xmlns:src="http://xml.phpdox.net/src"
           attributeFormDefault="unqualified" elementFormDefault="qualified"
           targetNamespace="http://xml.phpdox.net/src">

    <xs:element name="index" type="src:indexType"/>

    <xs:complexType name="indexType">
        <xs:choice maxOccurs="unbounded" minOccurs="0">
            <xs:element type="src:namespaceType" name="namespace"/>

            <xs:element type="src:unitType" name="interface"/>
            <xs:element type="src:unitType" name="class"/>
            <xs:element type="src:unitType" name="trait"/>

            <xs:element type="src:enrichmentsType" name="enrichments" maxOccurs="1" minOccurs="0"
                       />
        </xs:choice>
    </xs:complexType>

    <xs:complexType name="unitType">
        <xs:attribute type="xs:string" name="name" use="required"/>
        <xs:attribute type="xs:string" name="xml" use="required"/>

        <xs:attribute type="xs:string" name="src" use="optional"/>
        <xs:attribute type="xs:string" name="description" use="optional"/>
    </xs:complexType>

    <xs:complexType name="namespaceType">
        <xs:choice maxOccurs="unbounded" minOccurs="0">
            <xs:element type="src:unitType" name="interface"/>
            <xs:element type="src:unitType" name="class"/>
            <xs:element type="src:unitType" name="trait"/>
        </xs:choice>
        <xs:attribute type="xs:string" name="name" use="required"/>
    </xs:complexType>

    <xs:complexType name="enrichmentsType">
        <xs:choice maxOccurs="unbounded" minOccurs="0">
            <xs:element type="src:enrichmentType" name="enrichment"/>
        </xs:choice>
    </xs:complexType>

    <xs:complexType name="enrichmentType">
        <xs:choice minOccurs="0" maxOccurs="unbounded">
            <xs:any processContents="lax" />
        </xs:choice>
        <xs:attribute type="xs:string" name="type" use="required"/>
    </xs:complexType>

</xs:schema>