Created
May 20, 2012 12:08
-
-
Save maxehmookau/2757847 to your computer and use it in GitHub Desktop.
Simple XML Schema
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
<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