I have a curl command that gets a JSON response and it gives the response below. I need to get the value of data.value
How can I do this without a "hacky" solution?
{
    "request_id":"50aaabe7-d01b-0a83-da86-8f01cb1da74b",
    "lease_id":"",
    "renewable":false,
    "lease_duration":2764800,
    "data":{"value":"randomBinaryString"},
    "wrap_info":null,
    "warnings":null,
    "auth":null
}
