<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:n="Node" xmlns:e="Evaluator" xmlns:a="Attribute" targetNamespace="Evaluator" elementFormDefault="qualified" attributeFormDefault="unqualified">
	<xs:import namespace="Attribute" schemaLocation="../Attribute/Attribute.xsd"/>
	<xs:import namespace="Node" schemaLocation="../Node/Node.xsd"/>
	<xs:complexType name="EvaluatorType" abstract="true">
		<xs:annotation>
			<xs:documentation>Type of Node that Evaluates a function and directs the result(s) to one or more EvaluatorOutputs.  Evaluators are Nodes so they can be inserted into Groups and other subtrees of Nodes</xs:documentation>
		</xs:annotation>
		<xs:complexContent>
			<xs:extension base="n:NodeType"/>
		</xs:complexContent>
	</xs:complexType>
	<xs:complexType name="EvaluatorOutputType" abstract="true">
		<xs:annotation>
			<xs:documentation>Type of Node that outputs a single result from an Evaluator to one or more targeted Attributes</xs:documentation>
		</xs:annotation>
		<xs:complexContent>
			<xs:extension base="a:AttributeType"/>
		</xs:complexContent>
	</xs:complexType>
</xs:schema>
