The Atom person construct is defined in section 3.2 of the format spec. |
QName | Type | Fixed | Default | Use | Inheritable | Annotation | |
---|---|---|---|---|---|---|---|
xml:base | xs:anyURI | optional |
|
||||
xml:lang | xs:language | optional |
|
||||
Wildcard: ANY attribute from ANY namespace OTHER than 'http://www.w3.org/2005/Atom' |
<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> |