summaryrefslogtreecommitdiffstats
path: root/sandbox/kgoodson/jagg/src/main/resources/JiraRSS.xsd
diff options
context:
space:
mode:
authorkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-01-29 15:53:44 +0000
committerkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-01-29 15:53:44 +0000
commite95b8dab55698aa2b43b8b525c9922f0ca0be121 (patch)
treef5e5b6440d0073c6ece7eb8742c9d050d189ed42 /sandbox/kgoodson/jagg/src/main/resources/JiraRSS.xsd
parent58049ed3431927e180cedcbc863773eb7960e91c (diff)
jaxb digestion of dummy jira xml file working, needs now to go off and download jira xml instead
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@904531 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/kgoodson/jagg/src/main/resources/JiraRSS.xsd')
-rw-r--r--sandbox/kgoodson/jagg/src/main/resources/JiraRSS.xsd17
1 files changed, 12 insertions, 5 deletions
diff --git a/sandbox/kgoodson/jagg/src/main/resources/JiraRSS.xsd b/sandbox/kgoodson/jagg/src/main/resources/JiraRSS.xsd
index 8cd89b6c2c..4a2b066267 100644
--- a/sandbox/kgoodson/jagg/src/main/resources/JiraRSS.xsd
+++ b/sandbox/kgoodson/jagg/src/main/resources/JiraRSS.xsd
@@ -16,8 +16,7 @@
<xsd:element name="link" type="xsd:string"></xsd:element>
<xsd:element name="description" type="xsd:string"></xsd:element>
<xsd:element name="language" type="xsd:string"></xsd:element>
-
- <xsd:any processContents="lax"></xsd:any>
+ <xsd:element name="build-info" type="BuildInfo"></xsd:element>
<xsd:element name="item" type="Item"></xsd:element>
</xsd:sequence>
</xsd:complexType>
@@ -52,8 +51,7 @@
<xsd:element name="due" type="xsd:string"></xsd:element>
<xsd:element name="votes" type="xsd:string"></xsd:element>
<xsd:element name="comments" type="Comments"></xsd:element>
- <xsd:sequence maxOccurs="unbounded" minOccurs="0"></xsd:sequence>
- <xsd:any></xsd:any>
+
</xsd:sequence>
</xsd:complexType>
@@ -89,4 +87,13 @@
<xsd:element name="comment" type="Comment" maxOccurs="unbounded" minOccurs="0"></xsd:element>
</xsd:sequence>
</xsd:complexType>
-</xsd:schema> \ No newline at end of file
+
+ <xsd:complexType name="BuildInfo">
+ <xsd:sequence>
+ <xsd:element name="version" type="xsd:string"></xsd:element>
+ <xsd:element name="build-number" type="xsd:string"></xsd:element>
+ <xsd:element name="build-date" type="xsd:string"></xsd:element>
+ <xsd:element name="edition" type="xsd:string"></xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+</xsd:schema>