Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Constraints for nested elements; key and keyref

From: ea_6666@-------.--
To: xml-dev@-----.---.---
Date: 2/1/2005 9:39:00 AM
Hi all,

i have a question about constraints, in detail about nested constraints.

I have several elements named 'parent' with an attribute named 'parentid' and subelements 'child' also 
with an attribute 'childid'. My intention (first part) is that each child is unique with respect to the childid 
in his parent and each parent is unique with respect to his parentid in the root element. This can be done 
by the two keys 'childKey' and 'parentKey'.
The second part of my intention is to reference in an later section of the xml-file to the childs, like it is show below.
The problem is to describe an appropiate keyref.

How can this be done? Or is a different approach necessary (integrating the parentid as an additional attribute to the child)?

Thanks in advance,

Erich


--- XML-Instance ---

<?xml version="1.0" encoding="UTF-8"?>
<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="Multikeys.xsd">
	<parent parentid="1">
		<child childid="4711"/>
		<child childid="4712"/>
		<child childid="4713"/>
	</parent>
	<parent parentid="2">
		<child childid="4711"/>
		<child childid="4715"/>
	</parent>
	<refer>
		<parentRef parentRefId="1">
			<childRef childRefId="4711"/>
		</parentRef>
		<parentRef parentRefId="2">
			<childRef childRefId="4715"/>
		</parentRef>
	</refer>
</root>



--- XML-Schema ---
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
	<xs:element name="root">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="parent" minOccurs="0" maxOccurs="unbounded">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="child" minOccurs="0" maxOccurs="unbounded">
								<xs:complexType>
									<xs:attribute name="childid" type="xs:int" use="required"/>
								</xs:complexType>
							</xs:element>
						</xs:sequence>
						<xs:attribute name="parentid" type="xs:int" use="required"/>
					</xs:complexType>
					<xs:key name="childKey">
						<xs:selector xpath="./child"/>
						<xs:field xpath="@childid"/>
					</xs:key>
				</xs:element>
				<xs:element name="refer">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="parentRef" maxOccurs="unbounded">
								<xs:complexType>
									<xs:sequence>
										<xs:element name="childRef" maxOccurs="unbounded">
											<xs:complexType>
												<xs:attribute name="childRefId" type="xs:int" use="required"/>
											</xs:complexType>
										</xs:element>
									</xs:sequence>
									<xs:attribute name="parentRefId" type="xs:int" use="required"/>
								</xs:complexType>
							</xs:element>
						</xs:sequence>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
		</xs:complexType>
		<xs:key name="parentKey">
			<xs:selector xpath="./parent"/>
			<xs:field xpath="@parentid"/>
		</xs:key>
	</xs:element>
</xs:schema>

----------------------------------------------
Erich Andresen,                                              ea_6666@f...


transparent
Print
Mail
Digg
delicious
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