Schema question

Hi, I have an element definition like this.
However, I want to define a type and use it
over and over again with different minInclusive/
maxInclusive values. Is it possible?


<xsd:element name="Elevation">
						<xsd:complexType>
							<xsd:simpleContent>
								<xsd:restriction base="xsd:double">
									<xsd:attribute name="value" default="0">
										<xsd:simpleType>
											<xsd:restriction base="xsd:double">
												<xsd:minInclusive value="-100000"/>
												<xsd:maxExclusive value="100000"/>
											</xsd:restriction>
										</xsd:simpleType>
									</xsd:attribute>
								</xsd:restriction>
							</xsd:simpleContent>
						</xsd:complexType>
					</xsd:element>


=====


__________________________________________________
Do You Yahoo!?
Buy the perfect holiday gifts at Yahoo! Shopping.
http://shopping.yahoo.com

Received on Wednesday, 5 December 2001 04:15:06 UTC