I am building a flow that has a custom object with, let's say, the following data in json:
{
"foo": "a",
"bar": "b",
"baz": 100
}
This json comes from a Web API and may change depending on what is being sent. I wanted to know if there is a way to extract the list of properties to loop over. I.E, in this case I would have a list of Text ["foo", "bar", "baz"]