<xsd:complexType name="RatingType">
<xsd:choice>
<xsd:element name="NumericValue">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:double">
<xsd:attribute name="minValue" type="xsd:double" />
<xsd:attribute name="maxValue" type="xsd:double" />
<xsd:attribute name="description" type="xsd:string" />
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
<xsd:element name="StringValue">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="minValue" type="xsd:string" />
<xsd:attribute name="maxValue" type="xsd:string" />
<xsd:attribute name="description" type="xsd:string" />
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
|