<xsd:complexType name="AssessmentStatusType">
<xsd:sequence>
<xsd:element name="Status">
<xsd:annotation>
<xsd:documentation>The name of the assessment status. It has to be chosen among the list of possible status</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Pending" />
<xsd:enumeration value="Error" />
<xsd:enumeration value="Acknowledged" />
<xsd:enumeration value="Scheduled" />
<xsd:enumeration value="In Progress" />
<xsd:enumeration value="Cancelled" />
<xsd:enumeration value="Declined" />
<xsd:enumeration value="Completed" />
<xsd:enumeration value="x:Deferred" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Details" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>A textual description that provides additional details</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="StatusDate" type="LocalDateNaType">
<xsd:annotation>
<xsd:documentation>The date the status last changed</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|