Hello,
Does anyone know how to handle this?
I have a JSON output from a flow to a PowerApp. It´s a array with the structure of 1 integer and 1 object including 2 strings.
I would like to show it in a collection, but the object (labels) isn´t displaying anything. How do I access a JSON object to a collection?
I want my collection to look like this,
| 1 | name1 | comment1 |
| 2 | name2 | comment2 |
Schema
{
"type": "array",
"items": {
"type": "object",
"properties": {
"project_number": {
"type": "integer"
},
"labels": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"comment": {
"type": "string"
}
}
}
},
"required": [
"project_number",
"labels"
]
}
}