I am trying to get the "value" using the field "ColumnName" from the below nested Json structure using groovy. Since the numbers below the "Cells" column will be dynamic, the find option is very effective. Is there a way to get the value, in the below example "CAMP" based on the "columnName" = "Type"
{
"type": "CATEGORY"
"cells": {
        "1309939": {
            "value": 120000,
            "columnName": "Planned spend"
        },
     "1309940": {
            "value": 12000,
            "columnName": "current spend"
        },
     "1309948": {
            "value": "CAMP",
            "columnName": "Type"
        }
}
Any suggestions will be very helpful

