<xsd:complexType name="EducationMeasureType">
<xsd:sequence>
<xsd:element name="MeasureSystem" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Identifies the measurement system. i.e. GPA</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="MeasureValue" type="MeasureValueType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The grade point average of a student.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="LowestPossibleValue" type="MeasureValueType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The value specifying the minimum of the measurement range</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="HighestPossibleValue" type="MeasureValueType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The value specifying the maximum of the measurement range</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="ExcessiveValueIndicator" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>This is a code indicating that an A+ grade has a value higher than the highest possible GPA. False - It is not possible to have a higher GPA than indicated in Range Maximum. True - It is possible to have a higher GPA than indicated in Range Maximum.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="GoodStudentIndicator" type="xsd:boolean" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
|