Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: XSD; Defining problem; Multimple Elements

From: ht@---.--.--.-- (----- -. --------)
To: NULL
Date: 12/1/2005 4:49:00 PM
Johannes Koch writes:

> R.Schuetze wrote:
>> I'm working on an XSD schema for an 3D Point. The XML struktur of the
>> point is the following:
>>           <Point name="6" target="Retro" type="TP" unit="m">
>>             <param name="X" value="0.000"/>
>>             <param name="Y" value="0.000"/>
>>             <param name="Z" value="0.000"/>
>>           </Point>
>
> Why not make it
>
> <Point name="6" target="Retro" type="TP" unit="m">
>    <xparam value="0.000"/>
>    <yparam value="0.000"/>
>    <zparam value="0.000"/>
> </Point>
> ?

Something along those lines is certainly the best way to go.

If you R.Schuetze _must_ have the original structure, a verbose
indentity-constraint solution will work -- add the following to the
element declaration for Point

 <xs:keyref refer="dims" name="krx">
  <xs:selector xpath="."/>
  <xs:field xpath="@x"/>
 </xs:keyref>
 <xs:keyref refer="dims" name="kry">
  <xs:selector xpath="."/>
  <xs:field xpath="@y"/>
 </xs:keyref>
 <xs:keyref refer="dims" name="krz">
  <xs:selector xpath="."/>
  <xs:field xpath="@z"/>
 </xs:keyref>
 <xs:key name="dims">
  <xs:selector xpath="param"/>
  <xs:field xpath="@name"/>
 </xs:key>

and add the following to the type defintion used for Point:

   <xs:attribute name="x" fixed="X"/>
   <xs:attribute name="y" fixed="Y"/>
   <xs:attribute name="z" fixed="Z"/>

ht
-- 
 Henry S. Thompson, HCRC Language Technology Group, University of Edinburgh
                     Half-time member of W3C Team
    2 Buccleuch Place, Edinburgh EH8 9LW, SCOTLAND -- (44) 131 650-4440
            Fax: (44) 131 650-4587, e-mail: ht@i...
                   URL: http://www.ltg.ed.ac.uk/~ht/
[mail really from me _always_ has this .sig -- mail without it is forged spam]


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