I have an API that returns json data and a dashboard full of klips to represent it. It works quite nicely, in my opinion. I would also like the ability to show the data in a less curated aspect, as there are many fields and making a layout that contains everything would be both tedious and an eyesore. I would like the ability to reference the data in a raw format so that i can manipulate as such. For example, a label component with the data reference @kf:raw(/*) would show the entire data payload as a json formatted string. @kf:raw(/subcomponent/*) would show the json formatted string for the subcomponent field(pretty much everything between "subcomponent": and the comma in the same layer.
So if subcomponent was an object, the function would return: "{"id":1,"name":"john"}"
an array subcomponent would return: "[1,2,3]"
and, of course, a basic value subcomponent would just return the value, but that's already in the current functionality.