Hi,
I have created a simple flow to execute a StoredProcedure to return top 3 items from one of the tables.
Used Request- Response in the flow

I created the Json schema using web - Json to Json Schema convertor and the complete schema is given below
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"Itemid": {
"type": "string"
}
},
"required": [
"Itemid"
]
}On executing the flow , it is success.

When I consume this flow in Powerapps, I am not getting any result.
New4 is my flow name and I am trying to bring the values in a Set.
The variable is created but it shown as record.

When I try to refer the Set in a label control, I could not get the other options to access the values

I am following the steps given in the link https://baizini-it.com/blog/index.php/2018/05/10/powerapps-concurrently-returning-variables-and-multiple-arrays-from-azure-sql-database/
Am I missing something?