atom:feedType

The Atom feed construct is defined in section 4.1.1 of the format spec.

Complex Type Information

Model

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

Element atom:feed

Source

<xs:complexType name="feedType">
  <xs:annotation>
    <xs:documentation>The Atom feed construct is defined in section 4.1.1 of the format spec.</xs:documentation>
  </xs:annotation>
  <xs:choice minOccurs="3" maxOccurs="unbounded">
    <xs:element name="author" type="atom:personType" minOccurs="0" maxOccurs="unbounded"/>
    <xs:element name="category" type="atom:categoryType" minOccurs="0" maxOccurs="unbounded"/>
    <xs:element name="contributor" type="atom:personType" minOccurs="0" maxOccurs="unbounded"/>
    <xs:element name="generator" type="atom:generatorType" minOccurs="0"/>
    <xs:element name="icon" type="atom:iconType" minOccurs="0"/>
    <xs:element name="id" type="atom:idType"/>
    <xs:element name="link" type="atom:linkType" minOccurs="0" maxOccurs="unbounded"/>
    <xs:element name="logo" type="atom:logoType" minOccurs="0"/>
    <xs:element name="rights" type="atom:textType" minOccurs="0"/>
    <xs:element name="subtitle" type="atom:textType" minOccurs="0"/>
    <xs:element name="title" type="atom:textType"/>
    <xs:element name="updated" type="atom:dateTimeType"/>
    <xs:element name="entry" type="atom:entryType" minOccurs="0" maxOccurs="unbounded"/>
    <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
  </xs:choice>
  <xs:attributeGroup ref="atom:commonAttributes"/>
</xs:complexType>