comparison schemas/warfoundry-cats.xsd @ 278:c1d55ea8a2a1

Re #297: Move Categories over to key/keyref from ID/IDREF * Make category use a string for an ID * Add key to system - key needs to be outside <complexType> so we can't put it in warfoundry-cats.xsd at the moment TODO: Add matching code to Race, or find a way to "alias" and create a categories element that uses the type and the key within warfoundry-cats.xsd
author IBBoard <dev@ibboard.co.uk>
date Wed, 07 Jul 2010 19:01:13 +0000
parents 874c5f0906c9
children
comparison
equal deleted inserted replaced
277:c7a95912c1e8 278:c1d55ea8a2a1
4 <xs:complexType name="categoriestype"> 4 <xs:complexType name="categoriestype">
5 <xs:sequence> 5 <xs:sequence>
6 <xs:element name="cat" minOccurs="1" maxOccurs="unbounded"> 6 <xs:element name="cat" minOccurs="1" maxOccurs="unbounded">
7 <xs:complexType> 7 <xs:complexType>
8 <xs:sequence> 8 <xs:sequence>
9 <xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/> 9 <xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
10 </xs:sequence> 10 </xs:sequence>
11 <xs:attribute name="id" type="xs:ID" /> 11 <xs:attribute name="id" type="xs:string" use="required" />
12 <xs:attribute name="name" 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"/> 13 <xs:attribute name="minPoints" type="core:nonNegativeDouble" default="0"/>
14 <xs:attribute name="maxPoints" type="core:nonNegativeOrInfiniteInteger" default="-1"/> 14 <xs:attribute name="maxPoints" type="core:nonNegativeOrInfiniteInteger" default="-1"/>
15 <xs:attribute name="minPercentage" type="core:percentage" default="0"/> 15 <xs:attribute name="minPercentage" type="core:percentage" default="0"/>
16 <xs:attribute name="maxPercentage" type="core:percentage" default="100"/> 16 <xs:attribute name="maxPercentage" type="core:percentage" default="100"/>