<?xml version="1.0" encoding="utf-16"?>
<xsd:complexType name="gradeType">
<xsd:sequence>
<xsd:element name="grade_value">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1" />
<xsd:maxLength value="64" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="varname" default="GRADE">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="256" />
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="members">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="2048" />
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:complexType>
|