Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


RE: Empty complexType with mixed="true"

From: "Michael Kay" <mike@--------.--->
To: "'Andrew Welch'" <andrew.j.welch@-----.--->, <xmlschema-dev@--.--->
Date: 3/18/2008 12:07:00 PM
 
> What's the best way to model "element with text content and 
> attributes"?  For example:
> 
> <foo bar="b" baz="b"> only text allowed </foo>
> 
> I've used this before, but it seems bulky:
> 
> <xs:complexType name="foo">
>     <xs:simpleContent>
>         <xs:extension base="xs:string">
>             <xs:attribute name="bar" type="xs:string"/>
>             <xs:attribute name="baz" type="xs:string"/>
>         </xs:extension>
>     </xs:simpleContent>
> </xs:complexType>
> 
> 
> This thread has suggested you can do this:
> 
>  <xs:complexType name="foo" mixed="true">
>     <xs:attribute name="bar" type="xs:string"/>
>     <xs:attribute name="baz" type="xs:string"/>  </xs:complexType>
> 
> Is that right?   If so, is that shorthand for the above?

They are two types that will validate the same set of instances, but they
are not equivalent. For example, the first one can be restricted to create
another type with a pattern or enumeration facet, the second one can't. They
will also generate a different PSVI, and have different behaviour in
schema-aware queries and stylesheets (one will atomize to xs:string, the
other to xs:untypedAtomic).

I would avoid using mixed content except where both child elements and child
text nodes are allowed.

We had an interesting case with the schema definition for XSLT 2.0, in
defining the type of <xsl:text>. We do this by restricting a more general
type with mixed content, to disallow all children. Some XML Schema
processors have difficulty with this case.

Michael Kay
http://www.saxonica.com/


From andrew.j.welch@g... Tue Mar 18 14:53:28 2008
Received: from maggie.w3.org ([1


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