<?xml version="1.0" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">

<xsd:annotation>
	<xsd:documentation xml:lang="en">
	Pro/3 Knowledge Output Schema
	Copyright (c) 2003 Holm Nett
	Compatible with Pro/3 version 3.03.
	Last updated 28Oct03.
	</xsd:documentation>
</xsd:annotation>

<!-- OUTPUT -->

<xsd:element name="pro3Output" />
<xsd:complexType>
	<xsd:attribute name="version" type="xsd:integer" />
	<xsd:attribute name="release" type="xsd:integer" />
	<xsd:attribute name="build" type="xsd:integer" />
	<xsd:attribute name="createdTime" type="xsd:timeInstant" />
	<xsd:attribute name="author" type="xsd:string" />
	<xsd:choice minOccurs="1" maxOccurs="1" >
		<xsd:element name="graphExport" type="graphExportType" />
	</xsd:choice>
</xsd:complexType>	

<!-- GRAPH EXPORT -->

<xsd:complexType name="graphExportType">
	<xsd:element name="graphHeader" type="xsd:string" minOccurs="1" maxOccurs="1" />
	<xsd:element name="graphMaster" type="xsd:string" minOccurs="1" maxOccurs="20" />
	<xsd:element name="graphNode" type="xsd:string" maxOccurs="unbounded" />
	<xsd:element name="graphLink" type="xsd:string" maxOccurs="unbounded" />
</xsd:complexType>

</xsd:schema>