Skip to content

Instantly share code, notes, and snippets.

@marianogonzalez
Created May 9, 2012 19:26
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 marianogonzalez/2648192 to your computer and use it in GitHub Desktop.
Save marianogonzalez/2648192 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="iso-8859-1"?>
<xsd:schema attributeFormDefault="unqualified" elementFormDefault="qualified" version="1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="Customer" type="CustomerType" />
<xsd:complexType name="CustomerType">
<xsd:sequence>
<xsd:element name="name" type="xsd:string" />
<xsd:element name="address" type="xsd:string" />
<xsd:element name="email" type="xsd:string" />
<xsd:element maxOccurs="unbounded" name="InteractionResource" type="InteractionResourceType" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="InteractionResourceType">
<xsd:sequence>
<xsd:element name="name" type="xsd:string" />
<xsd:element name="feed" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment