I have the below Json (wf.json)
{
\"workflow\":{
\"template\":\"Analysis1\",
\"start\":{
\"instance\":\"HDA_run1\",
\"user\":\"symte
import com.adobe.serializers.json.JSONDecoder;
var JSON:JSONDecoder = new JSONDecoder();
var result:Object = JSON.decode(JSON_STRING);
that worked for me then you can either construct new object type(s) or jsut access values either
result.template
or
result['template']
the latter is good for dynamic valus/keys needed rather than known key values