<xsd:complexType name="AssessmentResultsType">
<xsd:annotation>
<xsd:documentation>Root element for AssessmentResults type, which is designed to hold data necessary to convey information on assessment results</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="ScoreId" type="EntityIdType" minOccurs="0" />
<xsd:element name="Passed" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>A boolean expression that denotes whether the subject passed or failed the assessment.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Description" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>"Label" of the score</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CompetencyAssessed" type="AssessmentCompetencyReferenceType" minOccurs="0" />
<xsd:element name="Score" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>The raw value (numeric) of the score</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:float">
<xsd:attribute name="type" type="AssessmentResultTypes" use="required" />
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
<xsd:element name="Scale" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>A textual label to indicate the range of possible values for this score. For example, 0-100 for a percentage scale. </xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Band" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Provides for categorizing or grouping of results.For example, "beginner", "intermediate" and "expert" would be three different bands</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Comments" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>A textual description that provides the opinion of the assessment vendor. It may be based on criteria that have been defined between the client and the vendor</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|