<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:tns="http://www.w3.org/2000/01/rdf-schema#" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.w3.org/2000/01/rdf-schema#" elementFormDefault="qualified" attributeFormDefault="unqualified">
	<xs:import namespace="http://www.w3.org/1999/02/22-rdf-syntax-ns#" schemaLocation="VZV-PARTNER_rdf.xsd"/>
	<xs:element name="seeAlso" type="tns:seeAlsoType">
		<xs:annotation>
			<xs:documentation>As defined by W3C at http://www.w3c.org/TR/rdf-schema/#ch_seealso :
			'used to indicate a resource that might provide additional information about the subject resource.'			
			</xs:documentation>
		</xs:annotation>
	</xs:element>
	<xs:attribute name="resource" type="xs:anyURI">
		<xs:annotation>
			<xs:documentation>The subject of an RDF description, i.e. the thing being described</xs:documentation>
		</xs:annotation>
	</xs:attribute>
	<xs:attribute name="label" type="tns:labelType"/>
	<xs:complexType name="seeAlsoType">
		<xs:attribute ref="tns:label" use="required"/>
		<xs:attribute ref="tns:resource" use="required"/>
	</xs:complexType>
	<xs:simpleType name="labelType">
		<xs:restriction base="xs:string">
			<xs:maxLength value="16"/>
		</xs:restriction>
	</xs:simpleType>
</xs:schema>