Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_Build_1008 / libraries / libIverUtiles / schemas / xml-entity.xsd @ 42158

History | View | Annotate | Download (964 Bytes)

1
<?xml version="1.0" encoding="UTF-8" ?>
2

    
3
<xs:schema targetNamespace="http://www.gvsig.gva.es"
4
        xmlns:xs="http://www.w3.org/2001/XMLSchema">
5
  <xs:element name="xmlCastor">
6
    <xs:complexType>
7
    <xs:sequence>
8
        <xs:element ref="xml-tag" minOccurs="0" maxOccurs="unbounded" />
9
      </xs:sequence>
10
    </xs:complexType>
11
  </xs:element>
12
  
13
  <xs:element name="property">
14
    <xs:complexType>
15
      <xs:attribute name="key" type="xs:string" use="required" />
16
      <xs:attribute name="value" type="xs:string" use="optional" />
17
    </xs:complexType>
18
  </xs:element>
19

    
20
  <xs:element name="xml-tag">
21
    <xs:complexType>
22
      <xs:sequence>
23
        <xs:element ref="property" minOccurs="0" maxOccurs="unbounded" />
24
        <xs:element ref="xml-tag" minOccurs="0" maxOccurs="unbounded" />
25
      </xs:sequence>
26
      <xs:attribute name="name" type="xs:string" use="optional" />
27
    </xs:complexType>
28
  </xs:element>
29

    
30
</xs:schema>