summaryrefslogtreecommitdiff
path: root/tests/schema/ref-type/idref.xsd
blob: 49ebe40d83f5a78446e938ffdd76009b265fb288 (plain)
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
<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns:xse="http://www.codesynthesis.com/xmlns/xml-schema-extension"
            xmlns:test="http://www.codesynthesis.com/xmlns/test"
            targetNamespace="http://www.codesynthesis.com/xmlns/test">

  <!-- attribute -->
  
  <xsd:attribute name="attribute" type="xsd:IDREF" xse:refType="test:a-author"/>
  
  <xsd:complexType name="a-author">
    <xsd:sequence>
      <xsd:element name="name" type="xsd:string"/>
    </xsd:sequence>
    <xsd:attribute name="recommends" type="xsd:IDREF" xse:refType="test:a-author"/>
  </xsd:complexType>

 
  <!-- element -->

  <xsd:element name="element" type="xsd:IDREF" xse:refType="test:e-author"/>

  <xsd:complexType name="e-author">
    <xsd:sequence>
      <xsd:element name="recommends" type="xsd:IDREF" xse:refType="test:e-author"/>
    </xsd:sequence>    
  </xsd:complexType>
  
  <!-- base -->
  
  <xsd:simpleType name="author-ref">
    <xsd:restriction base="xsd:IDREF" xse:refType="test:e-author"/>
  </xsd:simpleType>


  <!-- itemType -->
  
  <xsd:simpleType name="author-refs">
    <xsd:list itemType="xsd:IDREF" xse:refType="test:e-author"/>
  </xsd:simpleType>

</xsd:schema>