Mercurial > repos > IBBoard.WarFoundry.API
view schemas/warfoundry-cats.xsd @ 243:b8883707c489
Re #152: Test and fix extensibility of current schemas
* Fix complex type for unit - should be named, not IDed
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 27 Feb 2010 15:03:18 +0000 |
parents | f097888efcfe |
children | c8ea9499eb15 |
line wrap: on
line source
<?xml version="1.0"?> <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" xmlns="http://ibboard.co.uk/warfoundry/cats" elementFormDefault="qualified"> <xs:complexType name="categoriestype"> <xs:sequence> <xs:element name="cat" minOccurs="1" maxOccurs="unbounded"> <xs:complexType> <xs:attribute name="id" type="xs:ID" /> <xs:attribute name="name" type="xs:string" use="required"/> <xs:attribute name="minPoints" type="core:nonNegativeDouble" default="0"/> <xs:attribute name="maxPoints" type="core:nonNegativeOrInfiniteInteger" default="-1"/> <xs:attribute name="minPercentage" type="core:percentage" default="0"/> <xs:attribute name="maxPercentage" type="core:percentage" default="100"/> <xs:anyAttribute/> </xs:complexType> </xs:element> </xs:sequence> <xs:anyAttribute/> </xs:complexType> </xs:schema>