Taxonomy

Taxonomy tag allows to select one or more hierarchical labels
storing both label and their ancestors.

Parameters

Param Type Description
name string name of the group
toName string name of the element that you want to label

Example

<View>
  <Taxonomy name="media" toName="text">
    <Choice value="Online">
      <Choice value="UGC" />
      <Choice value="Free" />
      <Choice value="Paywall">
        <Choice value="NYC Times" />
        <Choice value="The Wall Street Journal" />
      </Choice>
    </Choice>
    <Choice value="Offline" />
  </Taxonomy>
  <Text name="text" value="You never believe what he did to the country" />
</View>