{% if annotation_fields %}
{% for field in annotation_fields %}
{% set annotation_type = annotation_fields[field]["type"] %}
{% set label = annotation_fields[field]["label"] %}
{% if annotation_type == "dropdown" or annotation_type == "checkbox" %}
{% for option in annotation_fields[field]["options"] %}
{% set option_id = option.keys() | first %}
{% set option_label = option.values() | first %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
Note: Changing input types will overwrite existing annotations for the field