<?xml version="1.0"?>
<!-- test four: test various quantity datatype settings -->
<basicQuantity
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns="http://ivoa.org/Quantity"
      xsi:schemaLocation="http://ivoa.org/Quantity BasicQuantity.xsd"
>
   <metaData>
      <!-- integer decimal, signed -->
      <basicQuantity><integer width="2" type="decimal" signed="yes"/><value>10</value></basicQuantity>
      <!-- integer octal -->
      <basicQuantity><integer width="3" type="octal"/><value>011</value></basicQuantity>
      <!-- integer hex -->
      <basicQuantity><integer width="4" type="hexadecimal"/><value>0x10</value></basicQuantity>
      <!-- float -->
      <basicQuantity><float width="4" precision="1"/><value>10.1</value></basicQuantity>
      <!-- float in sci notation -->
      <basicQuantity><float width="8" precision="1" exponent="3"/><value>10.1e-02</value></basicQuantity>
      <!-- string, arb. length -->
      <basicQuantity><string/><value>some string</value></basicQuantity>
      <!-- string, fixed length -->
      <basicQuantity><string width="24"/><value>some fixed length string</value></basicQuantity>
   </metaData>
   <ucd>meta.id</ucd>
   <string width="14"/>
   <value>some data here</value>
</basicQuantity>
