<xsd:complexType name="AdministrationInfoType">
<xsd:sequence>
<xsd:element name="AdministrationNotes" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Notes concerning the administration of this assessment package. </xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="IsProctored" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Indicates if the assessment package should be administered in a proctored environment.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="TimeEnforcement">
<xsd:annotation>
<xsd:documentation>Indicates if all or part of the assessment package will enforce a time limit on its completion.</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="None" />
<xsd:enumeration value="Partial" />
<xsd:enumeration value="Complete" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="EstimatedTime" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Estimated time to complete the assessment package, possibly for UI display to the subject. String type for flexibiliy and to discourage use in enforcing timing.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="AssessmentDelivery" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Identifies or describes how the assessment is delivered, what environment the assessment is occurring in</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="AssessmentDeliveryTypes">
<xsd:attribute name="schedulingRequired" type="xsd:boolean" />
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|