{% load spider_rdf %}
{% literalize value field as valueData %}
{% if valueData|is_dict %}
{% for key, subval in valueData.items.items %}
{% hashable_literalize field|default:value key as hashable %}
{{hashable}}
{{key}}
{% if subval|is_uriref %}
{% else %}
{{subval}}
{% endif %}
{% empty %}
{% endfor %}
{% else %}
{% if valueData|is_uriref %}
{% else %}
{{valueData}}
{% endif %}
{% endif %}