Reading a json file using Ansible

Hi,

I have a json file called “develop.json” like below,

{
“releasedata”: {
“release_name”: “abcd”,
“release_number”: “22”
}
}

I want to read this file in ansible and get the value for “release_name” key. I have tried the below code