Mercurial > repos > IBDev-IBBoard.WarFoundry.API
view dtds/warfoundry-core.xsd @ 24:72312a7ac08a
Re #32 - Migrate WarFoundry files to using Schemas
* Add namespace for Core to Cats schema
* Remove duplicate "equipmentitem" definitions from Race schema
* Correct namespace on nonNegativeInteger and positiveInteger
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 14 Mar 2009 15:57:29 +0000 |
parents | f9846f896df3 |
children | 92cf25b0493b |
line wrap: on
line source
<?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://ibboard.co.uk/warfoundry/core" xmlns="http://ibboard.co.uk/warfoundry/core" elementFormDefault="qualified"> <xs:simpleType name="infiniteOrNonNegativeDecimal"> <xs:restriction base="xs:decimal"> <xs:minInclusive value="-1"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="infiniteOrNonNegativeInteger"> <xs:restriction base="xs:integer"> <xs:minInclusive value="-1"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="nonNegativeDecimal"> <xs:restriction base="xs:decimal"> <xs:minInclusive value="0"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="percentage"> <xs:restriction base="xs:decimal"> <xs:minInclusive value="0"/> <xs:maxInclusive value="100"/> </xs:restriction> </xs:simpleType> </xs:schema>