Created
May 9, 2013 14:37
-
-
Save kamarcum/5547845 to your computer and use it in GitHub Desktop.
Basic format for standups
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
<xs:element name="Status"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element name="Location"> | |
<xs:simpleType> | |
<xs:restriction base="xs:string"> | |
<xs:enumeration value="The Office" /> | |
<xs:enumeration value="Remote" /> | |
</xs:restriction> | |
</xs:simpleType> | |
</xs:element> | |
<xs:element name="YesterdayI" type="xs:string" /> | |
<xs:element name="TodayI" type="xs:string" /> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> | |
</xs:schema> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment