but you can use deserialize json activity from uiPath.Web.Actvities and you eill find the next steps easily as you can have it converted into the common datataypes datatable or even string
e.g. assign activity: dictData = JsonConvert.DeserializeObject(Of Dictionary(Of String, Int32))(strJSON).
access:
first Key: dictData.ElementAt(0).Key
first Value: dictData.ElementAt(0).Value
Option 2: Tuple List
Deserialize JSON string with Deserialize JSON activity - myJObject
TupleList = myJObject.Properties.Select(Function (x) Tuple.Create(x.Name,Cint(x.Value))).toList
access:
first Key: TupleList(0).item1 - returns a string
first Value: TupleList(0).item2 - returns an int32
we would suggest to have it in place of a datatype holding all values. But when it is be used within a loop, we can adopt the approach as well