I am new To JSon and i want to search the following json string and get the required output. String:
{"status":"Success","code":"200","message":"Retrieved Successfully","reason":null,"
 "projects":
   [
       {
           "projectName": "example",
           "users":
           [
               {
                   "userName": "xyz",
                   "executions":
                   [
                       {
                           "status": "check",
                           "runs":
                           [
                               {
                                   "Id": "------",
                                   "Key": "---"
                               }
                           ],
                           "RCount": 1
                       }
                   ],
                   "RCount": 1
               }
           ],
           "RCount": 1
       },
Like that i have many projects and now , if i give projectname and username as input i wantt to get its status as output. Is it possible?If yes how?
 
     
     
    