Hello Community,
I´ve got two problems I´m working on for a while now.
First:
In my PowerApp I wanted to use a Webservice to get article data into a gallery. My current JSON schema is the following:
{
"type": "object",
"properties": {
"status": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
}
}
},
"articledata": {
"type": "object",
"properties": {
"articlenumber": {
"type": "string"
},
"salesprice": {
"type": "string"
},
"producingcountry":
"type": "string"
},
"materialdata": {
"type": "object",
"properties": {
"material1": {
"type": "string"
},
"material2": {
"type": "string"
},
"material3": {
"type": "string"
},
"material4": {
"type": "string"
}
}
},
"colors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"color": {
"type": "string"
}
},
"required": [
"color"
]
}
}
}
}
}
}
Im able to use articlenumber, salesprice, producingcountry and every oject in materialdata. What i cant use is the color array. Its filled as soon as I get the data in Flow and PowerApps also knows the object.

I know that it is possible to split the color array and write a string with all the items, but I hope someone knows a smarter way to do it.
Second:
In my PowerApp I´m calling the Flow and clearcollecting the data to a collection. To get the data into screen I had to use one gallery for every object. I had to use (myCollection.articledata) as the Items property of the gallery and (articledata.articlenumber) as the Text property of my Subtitle.
I thought I could use one gallery for all of my webservice data, but I failed to get it done.
I hope someone knows better ways. Thanks in advance!