Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: Forcing a parent tag to have at least one child via an XML schema

From: Mukul Gandhi <mukul_gandhi@-----.--->
To: NULL
Date: 10/3/2008 5:53:00 AM
On Oct 3, 5:37=A0pm, "Susan Harris" <susanbharris1...@yahoo.com> wrote:
> I have a document that includes info similar to:
>
> <cat>
> =A0 <name>Tiddles</name>
> =A0 <color>Purple</color>
> =A0 <age>12</age>
> =A0 <ageInCatYears>84</ageInCatYears>
> </cat>
>
> ALL elements (including <cat>) are optional. However, <cat> should not ex=
ist
> unless at least one of it children does.
>
> How can I specific via an XML schema that <cat> should not exist unless i=
t
> has at least one child?

I haven't check the Schema spec deeply, but I feel this might not be
possible with XSD 1.0. But it should be possible with the upcoming XSD
1.1 schema language (using the assertions feature).

With XSD 1.1, this should likely work:

<xs:element name=3D"cat">
  <xs:complexType>
     <xs:sequence>
        <xs:element name=3D"name" type=3D"xs:string" minOccurs=3D"0"
maxOccurs=3D"1" />
        <xs:element name=3D"color" type=3D"xs:string" minOccurs=3D"0"
maxOccurs=3D"1" />
        <xs:element name=3D"age" type=3D"xs:integer" minOccurs=3D"0"
maxOccurs=3D"1" />
        <xs:element name=3D"ageInCatYears" type=3D"xs:string"
minOccurs=3D"0" maxOccurs=3D"1" />
     </xs:sequence>
     <xs:assert test=3D"count(*) &gt; 0" />
  </xs:complexType>
</xs:element>



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