Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


How do I make a unique key ?

From: Dan White <ygor@-------.--->
To: xml-dev@-----.---.---
Date: 7/8/2004 1:23:00 AM
I think I want to use xs:key as opposed to xs:unique because xs:key 
cannot be NULL.

OK, here's my schema fragment:

	<xs:complexType name="sectorType">
		<xs:sequence>
			<xs:element name="id">
				<xs:simpleType>
					<xs:restriction base="xs:integer">
						<xs:minInclusive value="1"/>
						<xs:maxInclusive value="10"/>
					</xs:restriction>
				</xs:simpleType>
				<xs:key name="sec_id">
					<xs:selector xpath=".//sector"/>
					<xs:field xpath="id"/>
				</xs:key>
			</xs:element>
			<xs:element thing1 &#x2026;/>
			<xs:element thing2 &#x2026;/>
			<xs:element thing3 &#x2026;/>
		</xs:sequence>
	</xs:complexType>

	<xs:element name="sector" type="sectorType" minOccurs="1" 
maxOccurs="10">

There are no more than 10 sectors, numbered 1 thru 10.

But the following XML file comes up valid.  What did I miss ?

<?xml version="1.0" encoding="UTF-8"?>
<foo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:noNamespaceSchemaLocation="foo.xsd">
	<sector>
		<id>1</id>
		<thing1>&#x2026;</thing1>
		<thing2>&#x2026;</thing2>
		<thing3>&#x2026;</thing3>
	</sector>
	<sector>
		<id>2</id>
		<thing1>&#x2026;</thing1>
		<thing2>&#x2026;</thing2>
		<thing3>&#x2026;</thing3>
	</sector>
	<sector>
		<id>1</id>
		<thing1>&#x2026;</thing1>
		<thing2>&#x2026;</thing2>
		<thing3>&#x2026;</thing3>
	</sector>
</foo>


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent