summaryrefslogtreecommitdiffstats
path: root/sandbox/kgoodson/SourceExplore/src/main/resources/projects.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/kgoodson/SourceExplore/src/main/resources/projects.xsd')
-rw-r--r--sandbox/kgoodson/SourceExplore/src/main/resources/projects.xsd32
1 files changed, 31 insertions, 1 deletions
diff --git a/sandbox/kgoodson/SourceExplore/src/main/resources/projects.xsd b/sandbox/kgoodson/SourceExplore/src/main/resources/projects.xsd
index 79f5c2d77c..bbdbd0414d 100644
--- a/sandbox/kgoodson/SourceExplore/src/main/resources/projects.xsd
+++ b/sandbox/kgoodson/SourceExplore/src/main/resources/projects.xsd
@@ -9,4 +9,34 @@
</choice>
</complexType>
</element>
-</schema> \ No newline at end of file
+
+ <element name="projects2">
+ <complexType>
+ <sequence maxOccurs="unbounded" minOccurs="0">
+ <element name="project">
+ <complexType>
+ <sequence maxOccurs="unbounded" minOccurs="0">
+ <element name="package"><complexType></complexType></element>
+ </sequence>
+ <attribute name="name" type="string"></attribute>
+ </complexType>
+ </element>
+ </sequence>
+ </complexType>
+ </element>
+
+ <complexType name="Package">
+ <sequence>
+ <element name="file" type="tns:File" maxOccurs="unbounded" minOccurs="0"></element>
+ </sequence>
+ <attribute name="name" type="string"></attribute>
+ </complexType>
+
+ <attribute name="NewAttribute" type="string"></attribute>
+
+
+ <complexType name="File">
+ <attribute name="name" type="string"></attribute>
+ <attribute name="digest" type="string"></attribute>
+ </complexType>
+ </schema>