| http://www.sqlsky.com/ |
|
|
| <CONTACTS> <CONTACT> <NAME>Stephanie Smith</NAME> <BIRTHDATE>1971-07-01</BIRTHDATE> <EMAIL>ssmith@abcdef.com</EMAIL> <PHONE>(425) 111-1111</PHONE> </CONTACT> <CONTACT> <NAME> Bill Williams</NAME> <BIRTHDATE>1968-09-17</BIRTHDATE> <EMAIL>billw@abcdef.com</EMAIL> <PHONE>(425) 111-1111</PHONE> </CONTACT> <CONTACT> <NAME>Christopher Jones</NAME> <BIRTHDATE>1999-09-08</BIRTHDATE> <EMAIL>cjones@abcdef.com</EMAIL> <PHONE>(425) 111-1111</PHONE> </CONTACT> </CONTACTS> |
| <Schema xmlns="urn:schemas-microsoft-com:xml-data" xmlns:dt="urn:schemas-microsoft-com:datatypes"> <ElementType name="NAME" content="textOnly"/> <ElementType name="BIRTHDATE" content="textOnly" dt:type="date"/> <ElementType name="EMAIL" content="textOnly"/> <ElementType name="PHONE" content="textOnly"/> <ElementType name="CONTACT" content="eltOnly"> <element type="NAME"/> <element type="BIRTHDATE"/> <element type="EMAIL"/> <element type="PHONE"/> </ElementType> <ElementType name="CONTACTS" content="eltOnly" order="many"> <element type="CONTACT"/> </ElementType> </Schema> |