<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
		targetNamespace="http://xmlgw.cocredo.com/v1-0/docs/schemas" 
		xmlns="http://xmlgw.cocredo.com/v1-0/docs/schemas"
		elementFormDefault="qualified">
	<xsd:annotation>
		<xsd:documentation>This schema is used to define data returned from a monitor status request</xsd:documentation>
	</xsd:annotation>
	<xsd:element name="monitorStatusResponse">
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="companyID" type="companyIDType" />
				<xsd:element name="currentMonitorStatus" type="currentMonitorStatusType" />
			</xsd:sequence>
		</xsd:complexType>
	</xsd:element>
	<!-- Data Types -->
	<xsd:simpleType name="companyIDType">
		<xsd:restriction base="xsd:string">
			<xsd:minLength value="1" />
			<xsd:maxLength value="50" />
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="currentMonitorStatusType">
		<xsd:restriction base="xsd:string">
			<xsd:enumeration value="Monitored" />
			<xsd:enumeration value="Not monitored" />
			<xsd:enumeration value="Pending" />
			<xsd:enumeration value="Unable to monitor" />
			<xsd:enumeration value="Unknown" />
		</xsd:restriction>
	</xsd:simpleType>
</xsd:schema>