How to read json object

How to read json object

Hi,
 
Please help me on how to read a dynamic json object of below format using jquery.
 
In the below sample , each data within  { } i.e curly braces is read a row to a grid.
 
[
   {
   "Applies":"Grtx",
   "id":"27255.43719",
   "name":"Grtx/56310",
   "Affected Node":"1",                                                                                 --> ROW1
   "Notes":"Dan on SOS check",
   "Req Priority":"High"
   },







   {
   "Applies":"Oss",
   "id":"27255.43720",
   "name":"Oss/46310",                                                                                                   
   "Affected Node":"8",                                                                     --> ROW2
   "Note":"Check the variant",
   "Priority":"Meduim"
   }
  
   {
   "Applies":"Mss",
   "id":"27255.43439",
   "name":"Mss/231310",
   "Node":"9",                                                                     --> ROW3
   "Note":"No Check",
   "Priority":"Low"
   }













 ]
 
Please help me on how to read each row i.e data within the curly braces { } , which includes key and value of each row.
 
Regards
ranchos