<xsd:complexType name="DataElementType">
<xsd:sequence>
<xsd:element name="Id" type="EntityIdType" minOccurs="0" />
<xsd:element name="Description" type="xsd:string" minOccurs="0" />
<xsd:choice>
<xsd:element name="MonetaryValue" type="MonetaryValueType" />
<xsd:element name="DataValue" type="xsd:string" />
</xsd:choice>
<xsd:element name="DataElementSubType" type="DataElementType" minOccurs="0" maxOccurs="unbounded" />
</xsd:sequence>
<xsd:attribute name="type" type="xsd:string" />
</xsd:complexType>
|