Skip to content

Instantly share code, notes, and snippets.

@maxehmookau
Created May 20, 2012 12:08
Show Gist options
  • Save maxehmookau/2757847 to your computer and use it in GitHub Desktop.
Save maxehmookau/2757847 to your computer and use it in GitHub Desktop.
Simple XML Schema
<xsd:schema xmlns:xsd="http://www.w3.org/2011/XMLSchema">
<xsd:complexType name = "codeFragment">
<xsd:attribute name="language", type ="xsd:string", default="JAVA" />
<xsd:sequence>
<xsd:element name="author" type="xsd:string" minOccurs="1", maxOccurs="1" />
<xsd:element name = "title", type="xsd:string", minOccurs="1", maxOccurs="1" />
<xsd:element name="date", type ="xsd:date", minOccurs="1", maxOccurs="1" />
<xsd:element name="code", type="xsd:string", minOccurs="1", maxOccurs="1" />
</xsd:sequence>
</xsd:complexType>
<xsd:element name="fragment", type="codeFragment" minOccurs="1", maxOccurs="unbounded" />
</xsd:schema>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment