Taxonomy

Perform classification tasks within the context of a defined taxonomy or hierarchy of choices.

Interactive Template Preview

Labeling Configuration

<View>
  <Text name="text" value="$text"/>
  <Taxonomy name="taxonomy" toName="text">
    <Choice value="Archaea" />
    <Choice value="Bacteria" />
    <Choice value="Eukarya">
      <Choice value="Human" />
      <Choice value="Oppossum" />
      <Choice value="Extraterrestrial" />
    </Choice>
  </Taxonomy>
</View>

About the labeling configuration

All labeling configurations must be wrapped in View tags.

Use the Text object tag to display text to classify:

<Text name="text" value="$text"/>

Use the Taxonomy control tag to create a taxonomy of choices for annotators to select from:

<Taxonomy name="taxonomy" toName="text">

Use the Choice control tag within the Taxonomy tag to specify the options of the specific taxonomy:

<Choice value="Archaea" />
<Choice value="Bacteria" />
<Choice value="Eukarya">
  <Choice value="Human" />
  <Choice value="Oppossum" />
  <Choice value="Extraterrestrial" />
</Choice>

Nest choices under a specific Choice tag to create layers in the taxonomy.