view schemas/warfoundry-cats.xsd @ 267:3f14a792fd41

Re #274: Crash when missing unit member ID * Add key and keyref for member type Re #290: Migrate to using key/keyref definitions instead of ID/IDREF type * Move keyref and key for equipment slot to correct place to be valid * Add aliased xmlns for schema to allow for use in XPath, which doesn't use default namespace * Disable warning reporting until Mono Bug 613684 is fixed (https://bugzilla.novell.com/show_bug.cgi?id=613684)
author IBBoard <dev@ibboard.co.uk>
date Sat, 12 Jun 2010 19:49:32 +0000
parents 874c5f0906c9
children c1d55ea8a2a1
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:sequence>
					<xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>	
				</xs:sequence>
				<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 processContents="lax"/>
			</xs:complexType>
		</xs:element>
	</xs:sequence>
	<xs:anyAttribute processContents="lax"/>
</xs:complexType>
</xs:schema>