view schemas/warfoundry-cats.xsd @ 3:2f52da2e7605

Directory and project updates. VS2008 does not like app.config so I had to remove references of that from the solution from other projects.
author Tsudico
date Wed, 08 Dec 2010 18:44:10 -0600
parents
children
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:string" use="required" />
				<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>