Skip to content

Instantly share code, notes, and snippets.

@nkcr
Last active March 14, 2016 10:19
Show Gist options
  • Save nkcr/880450c00dfa7b2d41ec to your computer and use it in GitHub Desktop.
Save nkcr/880450c00dfa7b2d41ec to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8" ?>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<xs:schema version="1.0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<!-- Main instance -->
<xs:element name="address">
<xs:complexType>
<xs:sequence>
<!-- phone, street, npa, city -->
<xs:element name="phone" type="xs:string"/>
<xs:element name="street" type="xs:string"/>
<xs:element name="npa" type="xs:positiveInteger"/>
<xs:element name="city" 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