<?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 is used to define data returned from a monitor notice request</xsd:documentation>
	</xsd:annotation>
	<xsd:element name="monitorNoticesResponse">
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="returnCount" type="xsd:integer" />
				<xsd:element name="notice" minOccurs="0" maxOccurs="unbounded">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="cocredoId" type="xsd:integer" />
							<xsd:element name="companyName" type="companyNameType" />
							<xsd:element name="changeDate" type="xsd:date" />
							<xsd:element name="changeIssue" type="xsd:string" />
							<xsd:element name="previousValue" type="xsd:string" />
							<xsd:element name="newValue" type="xsd:string" />
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
			</xsd:sequence>
		</xsd:complexType>
	</xsd:element>
	<!-- Data Types -->
	<xsd:simpleType name="companyNameType">
		<xsd:restriction base="xsd:string">
			<xsd:minLength value="1" />
			<xsd:maxLength value="100" />
		</xsd:restriction>
	</xsd:simpleType>
</xsd:schema>