<?xml version="1.0" encoding="UTF-8"?>
<!-- changes:
18.04.2009:	changed types of "targets" and "type" from NMToken to String
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" xmlns:xlink="http://www.w3.org/1999/xlink">
	<xs:include schemaLocation="http://xml.exmaralda.org/iso-fs-standalone.xsd"/>
	<xs:include schemaLocation="http://xml.exmaralda.org/comacorpus.xsd"/>
		<xs:import namespace="http://www.w3.org/1999/xlink"
		schemaLocation="http://xml.exmaralda.org/xlink.xsd"/>
	<xs:import namespace="http://www.w3.org/XML/1998/namespace"
		schemaLocation="http://www.w3.org/2001/xml.xsd"/>
	<xs:element name="annotation">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="description" type="DescriptionType" minOccurs="0"/>
				<xs:element name="ann" maxOccurs="unbounded" type="annType" minOccurs="0"/>
			</xs:sequence>
			<xs:attribute name="target" use="required" type="xs:anyURI"/>
			<xs:attribute name="targetId" use="required" type="xs:string"/>
			<xs:attribute name="id" use="required" type="xs:ID"/>
			<xs:attribute name="targets" type="xs:string"/>
			<xs:attribute name="type" use="required" type="xs:string"/>
			<xs:attribute ref="xml:base" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:complexType name="annType">
		<xs:all>
			<xs:element ref="fs"/>
		</xs:all>
		<xs:attribute name="id" use="required" type="xs:ID"/>
		<xs:anyAttribute namespace="http://www.w3.org/1999/xlink" />
	</xs:complexType>
</xs:schema>

