comparison schemas/warfoundry-cats.xsd @ 224:f097888efcfe

Fixes #233: "unitPoints" attribute is badly named * Rename "unitPoints" to "basePoints" * Re-order schema to more sensible name * Use new name in code when parsing XML (object property already has sensible name) Also: * Rename "dtds" folder to more accurate "schemas" * Change references to folder in code
author IBBoard <dev@ibboard.co.uk>
date Mon, 14 Dec 2009 20:50:39 +0000
parents
children c8ea9499eb15
comparison
equal deleted inserted replaced
223:fe5a03d73918 224:f097888efcfe
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:attribute name="id" type="xs:ID" />
9 <xs:attribute name="name" type="xs:string" use="required"/>
10 <xs:attribute name="minPoints" type="core:nonNegativeDouble" default="0"/>
11 <xs:attribute name="maxPoints" type="core:nonNegativeOrInfiniteInteger" default="-1"/>
12 <xs:attribute name="minPercentage" type="core:percentage" default="0"/>
13 <xs:attribute name="maxPercentage" type="core:percentage" default="100"/>
14 <xs:anyAttribute/>
15 </xs:complexType>
16 </xs:element>
17 </xs:sequence>
18 <xs:anyAttribute/>
19 </xs:complexType>
20 </xs:schema>