<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
		targetNamespace="http://xmlgw.cocredo.com/v2-0/docs/schemas" 
		xmlns="http://xmlgw.cocredo.com/v2-0/docs/schemas"
		elementFormDefault="qualified">
	<xsd:annotation>
		<xsd:documentation>
		This schema should be used to request or change the monitoring status of a business.

		Using a status of Add will return a response of Pending or Monitored.
		Using a status of Remove will return a reponse of Not monitored.
		</xsd:documentation>
	</xsd:annotation>
	<xsd:element name="monitorStatus">
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="cocredoId" type="xsd:integer" />
				<xsd:element name="monitorProcess" type="monitorProcessType" />
			</xsd:sequence>
		</xsd:complexType>
	</xsd:element>
	<!-- Data types -->
	<xsd:simpleType name="monitorProcessType">
		<xsd:restriction base="xsd:string">
			<xsd:enumeration value="Status" />
			<xsd:enumeration value="Add" />
			<xsd:enumeration value="Remove" />
		</xsd:restriction>
	</xsd:simpleType>
</xsd:schema>