Studio web | UiPath Apps - Data binding to Table from a json

Hello,

I have a json in the below format:

{
“CaseData”:{“id”:1234, “name”:“abc”},
“RawData”:{“date”:“1-1-2025”,“updatedBy”:“xyz”}
}

I am converting the “CaseData” property of the json using Linq and using it as a datasource, below is the expression used in data source of Table control:

AppsDataSource.from(
Newtonsoft.Json.Linq.JObject.Parse(ActionProperties.FullJson) _
.SelectToken(“DenialInformation”) _
.ToObject(Of System.Collections.Generic.Dictionary(Of String, Object))() _
.ToArray()
)

Now, I want to bind the Key & Value to the columns of table, kindly advise how I can do this.

Created app variables, then built the table and assigned it to app variables and did binding of the app variable with table control, and it worked.