Skip to content

Instantly share code, notes, and snippets.

@kamarcum
Created May 9, 2013 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kamarcum/5547845 to your computer and use it in GitHub Desktop.
Save kamarcum/5547845 to your computer and use it in GitHub Desktop.
Basic format for standups
<?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