Skip to content

Instantly share code, notes, and snippets.

@maleficarum
Created August 26, 2014 15:38
Show Gist options
  • Save maleficarum/821c53f1775599a2f394 to your computer and use it in GitHub Desktop.
Save maleficarum/821c53f1775599a2f394 to your computer and use it in GitHub Desktop.
XSD Skeleton
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="http://example.com" elementFormDefault="qualified" xmlns="http://example.com" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:bpmo="http://xmlns.oracle.com/bpm/bpmobject/" >
<xs:element name="User">
<xs:complexType>
<xs:sequence>
<xs:element name="user" 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