Mercurial > repos > IBDev-IBBoard.WarFoundry.API
comparison dtds/warfoundry-core.xsd @ 21:1e18de815472
Re #32 - Migrate WarFoundry to schemas
* Add "WarFoundry-Core" schema to define numerical types with -1 taking a special value
* Add "WarFoundry-Cats" to store common category definition between race and system
* Add full system schema
* Add partial implementation of race schema
Re #34 - Remove choices and base/increment
* "WarFoundry-Cats" schema only includes min/max points and percentage
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 07 Mar 2009 20:47:32 +0000 |
parents | |
children | f9846f896df3 |
comparison
equal
deleted
inserted
replaced
20:b7c93a5821cd | 21:1e18de815472 |
---|---|
1 <?xml version="1.0"?> | |
2 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://ibboard.co.uk/warfoundry/core" | |
3 xmlns="http://ibboard.co.uk/warfoundry/core"elementFormDefault="qualified"> | |
4 <xs:simpleType name="infiniteOrNonNegativeDecimal"> | |
5 <xs:restriction base="xs:decimal"> | |
6 <xs:minInclusive value="-1"/> | |
7 </xs:restriction> | |
8 </xs:simpleType> | |
9 <xs:simpleType name="infiniteOrNonNegativeInteger"> | |
10 <xs:restriction base="xs:integer"> | |
11 <xs:minInclusive value="-1"/> | |
12 </xs:restriction> | |
13 </xs:simpleType> | |
14 <xs:simpleType name="nonNegativeDecimal"> | |
15 <xs:restriction base="xs:decimal"> | |
16 <xs:minInclusive value="0"/> | |
17 </xs:restriction> | |
18 </xs:simpleType> | |
19 <xs:simpleType name="percentage"> | |
20 <xs:restriction base="xs:decimal"> | |
21 <xs:minInclusive value="0"/> | |
22 <xs:maxInclusive value="100"/> | |
23 </xs:restriction> | |
24 </xs:simpleType> | |
25 </xs:schema> |