blob: 8b7a98af48d2c94b7b3083ad1b587538f745e390 (
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
|
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.lovullo.com/rater/worksheet"
xmlns="http://www.lovullo.com/rater/worksheet"
xmlns:w="http://www.lovullo.com/rater/worksheet"
elementFormDefault="qualified">
<xs:element name="worksheet">
<xs:annotation>
<xs:documentation xml:lang="en">
Root node for rating worksheets
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required" />
<xs:attribute name="package" type="xs:string" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">
Package for which worksheet is being generated
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:schema>
|