[
Lists Home |
Date Index |
Thread Index
]
- From: Curt Arnold <CurtA@techie.com>
- To: xml-dev@lists.xml.org
- Date: Fri, 15 Sep 2000 12:58:16 -0500
Martin Bryan wrote:
> am I right in inferring that a valid XML content model of (a, b, c, b) cannot be expressed using a schema?
No, the constraint that was quoted is on the top-level declarations in a
schema. It is saying you can't do:
<schema...>
<element name="b">
<complexType>
...
</complexType>
</element>
<element name="b">
<complexType>
...
</complexType>
</element>
</schema>
|