Hey 🙌🏽, Snowflake supports semi-structured data as variant type and you can access the item by using colon and dot. Please see: https://docs.snowflake.com/en/user-guide/querying-semistructured.html#traversing-semi-structured-data Example below fails with unexpected argument named: ```prql from sometable filter json:first_key.second_key == 1 and json:third_key == 50 ``` I see also `:` used for named args & parameters. How can we support this syntax?