Syntax PARSE_URL(text)Examples Example 1Input{ "my_action": { "url": "http://www.tines.com/test?foo=bar&baz=a&baz=b#123" } }FormulaPARSE_URL(my_action.url)Output{ "fragment": "123", "host": "www.tines.com", "path": "/test", "query": { "foo": "bar", "baz": [ "a", "b" ] }, "scheme": "http", "domain": "tines.com", "tld": "com" }