<xsd:complexType name="Formula">
<xsd:annotation>
<xsd:documentation xml:lang="en">A type describing a financial formula, with its description and components.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="formulaDescription" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">Text description of the formula</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="math" type="Math" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">An element for containing an XML representation of the formula. Defined using xsd:any currently for flexibility in choice of language (MathML, OpenMath)</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="formulaComponent" type="FormulaComponent" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">Elements describing the components of the formula. The name attribute points to a value used in the math element. The href attribute points to a value elsewhere in the document</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|