Re: [xml-dev] <xs:group> name versus id attributes

From
Anne Thomas Manes <>
To
Dennis Sosnoski <>
Date
2006-06-23T23:21:59Z
ID
<>
Thread
Re: [xml-dev] <xs:group> name versus id attributes
So should I then assume that this example from the XML Schema Primer is in error?

<xsd:complexType name="PurchaseOrderType">

<xsd:sequence>
<xsd:choice>
<xsd:group ref="shipAndBill"/>
<xsd:element name="singleUSAddress" type="USAddress"/>
</xsd:choice>
<xsd:element ref="comment" minOccurs="0"/>
<xsd:element name="items" type="Items"/>
</xsd:sequence>
<xsd:attribute name="orderDate" type="xsd:date"/>
</xsd:complexType>

<xsd:group id="shipAndBill">
<xsd:sequence>
<xsd:element name="shipTo" type="USAddress"/>
<xsd:element name="billTo" type="USAddress"/>
</xsd:sequence>
</xsd:group>
The group should be defined as:

        <xsd:group name="shipAndBill">

Thanks,
Anne

On 6/23/06, Dennis Sosnoski <[email protected]> wrote:
Hi Anne,

All the schema elements have an optional id attribute, which is just a
standard ID-type value (basically a non-namespaced name that can be used
to reference the element, using values of type IDREF, anywhere within
the document). Even though schema includes the id attribute on all the
elements AFAIK it doesn't define any use for the id. The name attribute
is what defines the name by which the group will be referenced, with the
namespace of that name controlled by the schema targetNamespace attribute.

  - Dennis

Anne Thomas Manes wrote:
> Can someone explain to me the difference between the name and id
> attributes in the <xs:group> element?
>
> Thanks,
> Anne