Re: extension and restriction

> > > I don't understand exactly what you mean here. Are you talking about
> > > something like:
> > >
> > > <xs:complexType name="base">
> > >   <xs:attribute name="name" type="xs:string"/>
> > >   <xs:attribute name="dead" type="xs:boolean"/>
> > >   <xs:anyAttribute namespace="##other" />
> > > </xs:complexType>
> > >
> > > <xs:complexType name="extension">
> > >   <xs:complexContent>
> > >     <xs:extension base="base">
> > >       <xs:attribute name="xlink:href" type="xs:anyURI"
> > >                     use="prohibited" />
> 
> Isn't the above attribute declaration invalid because as far as I know the name
> attribute must match an NCName?
> Maybe there is a special rule for this when you extend or restrict a complexType
> that I've missed out on...

Well, you could rewrite this like so and have the same ambiguity, right?

<xs:complexType name="base">
  <xs:anyAttribute namespace="##target" />
</xs:complexType>

<xs:complexType name="restriction">
  <xs:complexContent>
    <xs:restriction base="base">
      <xs:attribute name="href" type="xs:anyURI" use="prohibited" />
    </xs:restriction>
  </xs:complexContent>
</xs:complexType>


niko

Received on Wednesday, 5 December 2001 03:02:11 UTC