1<?xml version="1.0" encoding="UTF-8"?>
2<xsd:schema xmlns:atom="http://www.w3.org/2005/Atom" xmlns:bf="http://www.eclipse.org/2006/BuildFeed" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://www.w3.org/2005/Atom">
3  <xsd:import namespace="http://www.eclipse.org/2006/BuildFeed" schemaLocation="build.xsd"/> 
4  <xsd:element name="feed">
5    <xsd:complexType>
6      <xsd:sequence>
7        <xsd:element ref="atom:title"/>
8        <xsd:element ref="atom:link"/>
9        <xsd:element ref="atom:updated"/>
10        <xsd:element ref="atom:author"/>
11        <xsd:element ref="atom:id"/>
12        <xsd:element maxOccurs="unbounded" ref="atom:entry"/>
13      </xsd:sequence>
14    </xsd:complexType>
15  </xsd:element>
16  <xsd:element name="author">
17    <xsd:complexType>
18      <xsd:sequence>
19        <xsd:element ref="atom:name"/>
20      </xsd:sequence>
21    </xsd:complexType>
22  </xsd:element>
23  <xsd:element name="name" type="xsd:string"/>
24  <xsd:element name="entry">
25    <xsd:complexType>
26      <xsd:sequence>
27        <xsd:element ref="atom:title"/>
28        <xsd:element ref="atom:link"/>
29        <xsd:element ref="atom:id"/>
30        <xsd:element ref="atom:updated"/>
31        <xsd:element ref="atom:summary"/>
32      </xsd:sequence>
33    </xsd:complexType>
34  </xsd:element>
35  <xsd:element name="summary">
36    <xsd:complexType>
37      <xsd:sequence>
38        <xsd:element maxOccurs="1" minOccurs="1" ref="bf:build"/>
39      </xsd:sequence>
40    </xsd:complexType>
41  </xsd:element>
42
43  <xsd:element name="title" type="xsd:string"/>
44  <xsd:element name="link">
45    <xsd:complexType>
46      <xsd:attribute name="href" type="xsd:anyURI" use="required"/>
47      <xsd:attribute name="rel" type="xsd:NCName"/>
48      <xsd:attribute name="type"/>
49    </xsd:complexType>
50  </xsd:element>
51  <xsd:element name="updated" type="xsd:dateTime"/>
52  <xsd:element name="id" type="xsd:anyURI"/>
53</xsd:schema>
54