← Back to team overview

mlhim-specs-dev team mailing list archive

[Branch ~mlhim-specs-dev/mlhim-specs/main] Rev 100: Completed structures.xsd

 

------------------------------------------------------------
revno: 100
committer: Timothy W. Cook <timothywayne.cook@xxxxxxxxx>
branch nick: mlhim-specs
timestamp: Mon 2011-04-18 10:03:51 -0500
message:
  Completed structures.xsd
modified:
  specs/2.0.x/mlhim/schemas/structures.xsd


--
lp:mlhim-specs
https://code.launchpad.net/~mlhim-specs-dev/mlhim-specs/main

Your team MLHIM Specifications Developers is subscribed to branch lp:mlhim-specs.
To unsubscribe from this branch go to https://code.launchpad.net/~mlhim-specs-dev/mlhim-specs/main/+edit-subscription
=== modified file 'specs/2.0.x/mlhim/schemas/structures.xsd'
--- specs/2.0.x/mlhim/schemas/structures.xsd	2011-04-16 20:09:12 +0000
+++ specs/2.0.x/mlhim/schemas/structures.xsd	2011-04-18 15:03:51 +0000
@@ -67,6 +67,43 @@
            </xs:complexType>
 
 
+           <xs:complexType name="ItemSingle" base="mlhim2:ItemStructure" abstract="false">
+             <xs:sequence>
+               <xs:element name="item" maxOccurs="1" minOccurs="0" type="mlhim2:Element"></xs:element>
+             </xs:sequence>          
+           </xs:complexType>
+
+           <xs:simpleType name="elementList">
+             <xs:list itemType="mlhim2:Element"></xs:list>
+           </xs:simpleType>
+
+
+           <xs:complexType name="ItemList" base="mlhim2:ItemStructure" abstract="false">
+             <xs:sequence>
+               <xs:element name="items" maxOccurs="1" minOccurs="0" type="mlhim2:elementList"></xs:element>
+             </xs:sequence>          
+           </xs:complexType>
+
+            <xs:simpleType name="clusterList">
+             <xs:list itemType="mlhim2:Cluster"></xs:list>
+           </xs:simpleType>
+
+ 
+           <xs:complexType name="ItemTable" base="mlhim2:ItemStructure" abstract="false">
+             <xs:sequence>
+               <xs:element name="rows" maxOccurs="1" minOccurs="0" type="mlhim2:clusterList"></xs:element>
+             </xs:sequence>          
+           </xs:complexType>
+
+
+           <xs:complexType name="ItemTree" base="mlhim2:ItemStructure" abstract="false">
+             <xs:sequence>
+               <xs:element name="items" maxOccurs="1" minOccurs="0" type="mlhim2:ItemStructure"></xs:element>
+             </xs:sequence>          
+           </xs:complexType>
+
+
+
 
 
 </xs:schema>