<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSPY v2004 rel. 4 U (http://www.xmlspy.com) by Kelli Wiseth (student) -->
<xs:schema elementFormDefault="qualified" attributeFormDefault="unqualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
	<xs:element name="NEWSPAPER">
		<xs:annotation>
			<xs:documentation>Comment describing your root element</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence maxOccurs="unbounded">
				<xs:element name="ARTICLE">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="HEADLINE"/>
							<xs:element name="BODY"/>
							<xs:element name="NOTES"/>
							<xs:element ref="copyright"/>
						</xs:sequence>
						<xs:attribute name="AUTHOR" type="xs:string" use="required"/>
						<xs:attribute name="DATE" type="xs:date" use="optional"/>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="copyright" type="xs:token" fixed="Copyright 1998 Vervet Logic Press"/>
</xs:schema>
