An element of type ratio will have two subelements and no attributes:
This datatype was developed to support the Epicentre ratio data type. Its intended usage is shown in the PEF ratio element document. The ratio datatype is useful whenever it is intended to express the ratio of two real numbers.
<xsd:complexType name="rationalNumber">
<xsd:sequence>
<xsd:element name="numerator" type="xsd:double"/>
<xsd:element name="denominator" type="xsd:double"/>
</xsd:sequence>
</xsd:complexType>
<element name="concentration" type="ratio"/>
<concentration>
<numerator>11.6</numerator>
<denominator>100000.</denominator>
</concentration>