<?xml version="1.0"?>
<!-- Created with Liquid XML Studio 0.9.8.0 (http://www.liquid-technologies.com) -->
<p:Purchase xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://NamespaceTest.com/Purchase Main.xsd" xmlns:p="http://NamespaceTest.com/Purchase">
	<OrderDetail>
		<Item>
			<ProductName>Widget</ProductName>
			<Quantity>1</Quantity>
			<UnitPrice>3.42</UnitPrice>
		</Item>
	</OrderDetail>
	<PaymentMethod>VISA</PaymentMethod>
	<p:CustomerDetails>
		<Name>James</Name>
		<DeliveryAddress>
			<Line1>15 Some Road</Line1>
			<Line2>SomeTown</Line2>
		</DeliveryAddress>
		<BillingAddress>
			<Line1>15 Some Road</Line1>
			<Line2>SomeTown</Line2>
		</BillingAddress>
	</p:CustomerDetails>
</p:Purchase>