<?xml version="1.0"?>

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	targetNamespace="http://www.certapay.com" >

    <xsd:complexType name="Foo">
		<xsd:sequence>
			<xsd:element name="FIID" type="fiid" />
			<xsd:element name="TRANTOKEN" type="trantoken" minOccurs="0" />
		</xsd:sequence>
	</xsd:complexType>

	<xsd:simpleType name="fiid">
			<xsd:restriction base="xsd:string">
				<xsd:length value="8" />
			</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="trantoken">
		<xsd:restriction base="xsd:string">
			<xsd:minLength value="1" />
			<xsd:maxLength value="32" />
		</xsd:restriction>
	</xsd:simpleType>

</xsd:schema>