File: opera.xsd

package info (click to toggle)
spatialite 5.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 74,240 kB
  • sloc: ansic: 587,051; makefile: 8,583; sh: 4,276; yacc: 1,973; xml: 717
file content (21 lines) | stat: -rw-r--r-- 735 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
<?xml version="1.0" encoding="utf-8"?>
<xs:schema 
	targetNamespace="http://www.gaia-gis.it/opera"
	elementFormDefault="qualified" version="0.1"
	xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="Opera">
    <xs:complexType>
	  <xs:sequence>
	    <xs:element name="author" minOccurs="1" maxOccurs="unbounded">
  		  <xs:complexType>
		    <xs:sequence>
			  <xs:element name="title" type="xs:string" minOccurs="1"  maxOccurs="unbounded" />
			</xs:sequence>
			<xs:attribute name="firstName" type="xs:string"  use="required" />
			<xs:attribute name="lastName" type="xs:string"  use="required" />
		  </xs:complexType>
		</xs:element>
	  </xs:sequence>
	</xs:complexType>
  </xs:element>
</xs:schema>