[mapguide-commits] r1181 - trunk/MgDev/Common/Schema

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Thu Mar 8 15:17:14 EST 2007


Author: tonyfang
Date: 2007-03-08 15:17:13 -0500 (Thu, 08 Mar 2007)
New Revision: 1181

Added:
   trunk/MgDev/Common/Schema/BatchPropertyCollection-1.0.0.xsd
   trunk/MgDev/Common/Schema/StringCollection-1.0.0.xsd
Log:
Added BatchPropertyCollection-1.0.0.xsd and StringCollection-1.0.0.xsd schemas.

Added: trunk/MgDev/Common/Schema/BatchPropertyCollection-1.0.0.xsd
===================================================================
--- trunk/MgDev/Common/Schema/BatchPropertyCollection-1.0.0.xsd	                        (rev 0)
+++ trunk/MgDev/Common/Schema/BatchPropertyCollection-1.0.0.xsd	2007-03-08 20:17:13 UTC (rev 1181)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
+  <xs:element name="BatchPropertyCollection">
+    <xs:annotation>
+      <xs:documentation>PropertyCollection list</xs:documentation>
+    </xs:annotation>
+    <xs:complexType>
+      <xs:sequence minOccurs="0" maxOccurs="unbounded">
+        <xs:element name="PropertyCollection">
+          <xs:annotation>
+            <xs:documentation>Property list</xs:documentation>
+          </xs:annotation>
+          <xs:complexType>
+            <xs:sequence minOccurs="0" maxOccurs="unbounded">
+              <xs:element name="Property">
+                <xs:complexType>
+                  <xs:sequence>
+                    <xs:element name="Name" type="xs:string"/>
+                    <xs:element name="Type" type="xs:string"/>
+                    <xs:element name="Value" type="xs:string"/>
+                  </xs:sequence>
+                </xs:complexType>
+              </xs:element>
+            </xs:sequence>
+          </xs:complexType>
+        </xs:element>
+      </xs:sequence>
+    </xs:complexType>
+  </xs:element>
+</xs:schema>
\ No newline at end of file

Added: trunk/MgDev/Common/Schema/StringCollection-1.0.0.xsd
===================================================================
--- trunk/MgDev/Common/Schema/StringCollection-1.0.0.xsd	                        (rev 0)
+++ trunk/MgDev/Common/Schema/StringCollection-1.0.0.xsd	2007-03-08 20:17:13 UTC (rev 1181)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
+  <xs:element name="StringCollection">
+    <xs:complexType>
+      <xs:sequence>
+        <xs:element name="Item" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
+      </xs:sequence>
+    </xs:complexType>
+  </xs:element>
+</xs:schema>
\ No newline at end of file



More information about the mapguide-commits mailing list