Syntax TO_SNAKE_CASE(text)Examples Example 1Input{ "my_action": { "message": "Hello World!" } }FormulaTO_SNAKE_CASE(my_action.message)Output"hello_world"Example 2Input{ "my_action": { "message": "Testing-1 2 3" } }FormulaTO_SNAKE_CASE(my_action.message)Output"testing_1_2_3"