I have a data factory pipeline that is triggered by a create blob trigger. I need to parse the blob (JSON) and set a variable from the blob content that can be used downstream in the pipeline.
I've tried using a lookup activity with the JSON Blob Dataset, but I can't seem to figure out how to set a variable from the JSON that can be used in the next lookup activity.
The sample JSON is:
{ "RUN_IDENTIFIER": "c46aca8d-012c-4db2-8abf-e784aeb52a0a" }
I need to get the value for the RUN_IDENTIFIER and set a variable.
Any ideas on how I can accomplish this?

