Hi All,
I have been searching this for a few hours and cant quite get it to work, this is my first crack at power automate
i am getting some data via API using a HTTP get,
i am then parsing the JSON data using this schema
{
"type": "object",
"properties": {
"selection10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Title": {
"type": "string"
},
"url": {
"type": "string"
},
"Tender_ID": {
"type": "string"
},
"Published_Date": {
"type": "string"
},
"Closing_Date": {
"type": "string"
},
"Agency": {
"type": "string"
},
"UNSPSC": {
"type": "string"
},
"Description": {
"type": "string"
}
},
"required": [
"Title",
"url",
"Tender_ID",
"Agency",
"Published_Date",
"Closing_Date",
"UNSPSC",
"Description"
]
}
}
}
}
Once i get all the data in, i am appending it to an array variable and then using the create CSV table with auto columns
but when i look at the output it has just created all the data in a single row


is there something i need to do to the data or the schema to get it to create the table i'm after?
When i save it as a .csv from the source all the column headers look like this
