{% if result.valid %} Valid {% else %} Invalid {% endif %} Verification Result

{% if result.error %}

{{ result.error }}

{% endif %}

Token: {{ result.token_preview }}

{% if result.claims %}

Claims

{% for key, value in result.claims.items() %} {% endfor %}
ClaimValue
{{ key }} {% if value is mapping or value is iterable and value is not string %}
{{ value | tojson(indent=2) }}
{% else %} {{ value }} {% endif %}
{% endif %}