[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Modeling question: node structure


modeling question
Title: RE: Modeling question: node structure

I have modelled your situation like this before, though I am still reliant on some processing within the application to ensure that the levels are controlled correctly.  At least you do get a true hierarchy without duplication.

Hope it is of use.

Jon


<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">

        <xs:element name="MerchandiseManagementGroup" type="MerchandisingGroupType"/>
        <xs:complexType name="MerchandisingGroupType">
                <xs:sequence>
                        <xs:element name="MMGID" type="xs:NMTOKEN"/>
                        <xs:element name="Description" type="xs:string"/>
                        <xs:element name="SubGroup" type="MerchandisingGroupType"/>
                </xs:sequence>
                <xs:attribute name="level" use="required">
                        <xs:simpleType>
                                <xs:restriction base="xs:positiveInteger">
                                        <xs:minInclusive value="1"/>
                                        <xs:maxInclusive value="15"/>
                                </xs:restriction>
                        </xs:simpleType>
                </xs:attribute>
        </xs:complexType>
</xs:schema>


-----Original Message-----
From: Paul Wuethrich [mailto:paul.wuethrich@e...]
Sent: 05 April 2004 15:06
To: xml-dev@l...
Subject: Modeling question: node structure


Is there a "standard" way for modeling a node structure that can be constrained up to a specific depth whereby all nodes are the same type?

For example, the concept is a dimension which could be any hierarchical concept such as geography, or product, and is constrained to a maximum depth of 15.  In addition, the number of dimensions is constrained to a maximum of 50.  One approach to the metadata definition for geography is straightforward since I can define a dimension generically such that:

       <xs:element name="Dimension">
             <xs:annotation>
                    <xs:documentation>A Dimension is a user defined element such as 'Geography'.</xs:documentation>
             </xs:annotation>
             <xs:complexType>
                    <xs:sequence>
                           <xs:element name="Dimension_Member" maxOccurs="15">
                                 <xs:complexType>
                                        <xs:attribute name="Id" type="xs:ID" use="required"/>
                                        <xs:attribute name="Label" use="required">
                                        ...
             </xs:complexType>
       </xs:element>

Note that the hierarchy can be defined using either a sequence number attribute of by assuming that the sequence itself defines the hierarchy.

The problem with this implementation is the duplication of element data and there will be thousands of "rows".

<GEOGRAPHY>
<COUNTRY>USA</COUNTRY><STATE>CO</STATE><CITY>DENVER</CITY>
<COUNTRY>USA</COUNTRY><STATE>CO</STATE><CITY>ASPEN</CITY>
<COUNTRY>USA</COUNTRY><STATE>CO</STATE><CITY>VAIL</CITY>
<COUNTRY>USA</COUNTRY><STATE>CO</STATE><CITY>COLORADO SPRINGS</CITY>
<COUNTRY>CANADA</COUNTRY><STATE>QC</STATE><CITY>HULL</CITY>
<COUNTRY> CANADA </COUNTRY><STATE> QC </STATE><CITY>HUDSON</CITY>
<COUNTRY> CANADA </COUNTRY><STATE> QC </STATE><CITY>MONTREAL</CITY>
<COUNTRY> CANADA </COUNTRY><STATE> QC </STATE><CITY>HULL</CITY>
</GEOGRAPHY>
<PRODUCT>
Different hierarchy...
</PRODUCT>
<ANOTHER DIM>
Different hierarchy...
</ANOTHER DIM>
...

What I would like is a more generic way for defining dimensions such that I can model the hierarchy and avoid duplication.

<GEOGRAPHY>
            <COUNTRY>
                        <STATE>
                                    <COUNTY>
                                                <CITY></CITY>
                                    </COUNTY>
                        </STATE>
            </COUNTRY>
</GEOGRAPHY>

Since the maximum node depth is known I also took the following approach but it seems like there has to be a better way.

       <xs:element name="DimensionData">
             <xs:complexType>
                    <xs:sequence>
                           <xs:element name="Dim1" maxOccurs="unbounded">
                                 <xs:complexType>
                                        <xs:complexContent>
                                               <xs:extension base="DimensionMemberData">
                                                     <xs:sequence>
                                                            <xs:element name="Dim2" minOccurs="0" maxOccurs="unbounded">

                                                                   <xs:complexType>
                                                                         <xs:complexContent>
                                                                                <xs:extension base="DimensionMemberData">

                                                                                       <xs:sequence>
                                                                                             <xs:element name="Dim3" minOccurs="0" maxOccurs="unbounded">

                                                                                                    <xs:complexType>
                                                                                    ...and so on til a depth of 15

Is the answer to use the anyType or something else?

Thanks in advance.

Paul



************************************************************************
DISCLAIMER
The information contained in this e-mail is confidential and is intended
for the recipient only.
If you have received it in error, please notify us immediately by reply
e-mail and then delete it from your system. Please do not copy it or
use it for any other purposes, or disclose the content of the e-mail
to any other person or store or copy the information in any medium.
The views contained in this e-mail are those of the author and not
necessarily those of Admenta UK Group.
************************************************************************

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.