hubdb - how do I print each row's id?

I cannot for the life of me get hubdb to print each row’s hubdb id.

{% set dynamic_page_hubdb_table_id = <id> %}
{% if dynamic_page_hubdb_table_id %}
 {% for row in hubdb_table_rows(dynamic_page_hubdb_table_id) %}
 {{ row.id }} {{ row.name }} {# the name prints, but the id does not #}
 {% endfor %} 
{% endif %}


hubDB column names

What am I doing wrong? This is driving me crazy

I finally found the answer for those of you who run into this in the future:

{{ row.hs_id }}

Maybe I’m just low on sleep lol.