Retrieve part of json and check

I have following response from my server(just an example):
https://gist.github.com/ivanursul/8eae0f1b735648b175cef4099d755b01

What I need is loop thought all $.result.288249.cells[*].description fields and verify that there’s a value, which is equal to what I have in one of my session objects.
It should look similar to following pseudo code:

.check(
jsonPath("$.result..cells[].description").contains("${mySessionValue})
)

Is there are method, which I can use in similar way ?

Thanks in advance!