I have a topic that includes a connector action which calls a customer connector. The JSON response includes an array of objects.
Schema:
{
"type": "object",
"properties": {
"value": {
"type": "array",
"items": {
"type": "object",
"properties": {
"IssueId": {
"type": "string"
},
"AppId": {
"type": "string"
},
"Owner": {
"type": "string"
},
"Custodian": {
"type": "string"
}
},
"required": [
"IssueId",
"AppId",
"Owner",
"Custodian"
]
}
}
}
}
I would like to loop through the result and return each object to the user using an adaptive card, but I can't find a way to do this?