Create check box Tag. See below example:
<field name="imageposition">
<title>Position</title>
<type>radioTag</type>
<options>
<option value="HomePage">Home Page</option>
<option value="FeaturedProduct">Featured Product</option>
</options>
<selected>Active</selected>
<db-attribute>
<attribute name="type ">enum</attribute>
<attribute name="length"></attribute>
<attribute name="null"></attribute>
<attribute name="default"></attribute>
</db-attribute>
<tag-attributes>
<attribute name="id">imageposition</attribute>
</tag-attributes>
</field>
Options:
Option tag contain the selectable options. Each option two parameter Value and Label. Like bellow
<option value="[VALUE]">[LABLE]</option>
See bellow example:
<option value="Active">Active</option>