0
|
1 <?xml version="1.0"?>
|
|
2 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:core="http://ibboard.co.uk/warfoundry/core" targetNamespace="http://ibboard.co.uk/warfoundry/cats"
|
|
3 xmlns="http://ibboard.co.uk/warfoundry/cats" elementFormDefault="qualified">
|
|
4 <xs:complexType name="categoriestype">
|
|
5 <xs:sequence>
|
|
6 <xs:element name="cat" minOccurs="1" maxOccurs="unbounded">
|
|
7 <xs:complexType>
|
|
8 <xs:sequence>
|
|
9 <xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
|
|
10 </xs:sequence>
|
|
11 <xs:attribute name="id" type="xs:string" use="required" />
|
|
12 <xs:attribute name="name" type="xs:string" use="required"/>
|
|
13 <xs:attribute name="minPoints" type="core:nonNegativeDouble" default="0"/>
|
|
14 <xs:attribute name="maxPoints" type="core:nonNegativeOrInfiniteInteger" default="-1"/>
|
|
15 <xs:attribute name="minPercentage" type="core:percentage" default="0"/>
|
|
16 <xs:attribute name="maxPercentage" type="core:percentage" default="100"/>
|
|
17 <xs:anyAttribute processContents="lax"/>
|
|
18 </xs:complexType>
|
|
19 </xs:element>
|
|
20 </xs:sequence>
|
|
21 <xs:anyAttribute processContents="lax"/>
|
|
22 </xs:complexType>
|
|
23 </xs:schema> |