atom:personType

The Atom person construct is defined in section 3.2 of the format spec.

Complex Type Information

Model

atom:name | atom:uri{0,1} | atom:email{0,1} | ANY element from ANY namespace OTHER than 'http://www.w3.org/2005/Atom'

Attributes

QName Type Fixed Default Use Inheritable Annotation
xml:base xs:anyURI optional
See http://www.w3.org/TR/xmlbase/ for
information about this attribute.
xml:lang xs:language optional
In due course, we should install the relevant ISO 2- and 3-letter
codes as the enumerated possible values . . .
Wildcard: ANY attribute from ANY namespace OTHER than 'http://www.w3.org/2005/Atom'

Used By

Source

<xs:complexType name="personType">
  <xs:annotation>
    <xs:documentation>The Atom person construct is defined in section 3.2 of the format spec.</xs:documentation>
  </xs:annotation>
  <xs:choice maxOccurs="unbounded">
    <xs:element name="name" type="xs:string"/>
    <xs:element name="uri" type="atom:uriType" minOccurs="0"/>
    <xs:element name="email" type="atom:emailType" minOccurs="0"/>
    <xs:any namespace="##other"/>
  </xs:choice>
  <xs:attributeGroup ref="atom:commonAttributes"/>
</xs:complexType>