Json google vision

Hi @andreus91 ,

Give a Try on the below Steps :

  1. Use Deserialize Json Activity with TypeArgument as JsonObject and input as the Output from the API, Let the output be jObj

  2. Next, we could get all the description field values from the textAnnotations JsonArray using the following Expression :

String.Join(",",jObj("responses")(0)("textAnnotations").cast(Of JObject).Select(Function(x)x("description").ToString))

This provide us all the description field values present in the textAnnotations JsonArray

Let us know if this method is not useful for your case.

1 Like