Skip to content

Instantly share code, notes, and snippets.

@jhowarth
Created April 13, 2011 00:20
Show Gist options
  • Select an option

  • Save jhowarth/916732 to your computer and use it in GitHub Desktop.

Select an option

Save jhowarth/916732 to your computer and use it in GitHub Desktop.
own3d.xsd
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="own3dReply">
<xs:complexType>
<xs:sequence>
<xs:element name="liveEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="isLive">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="true|false"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="liveViewers" type="xs:integer"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</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