I'm trying to use the Parse Json to attach a file uploaded to my forms into an email in flow.
All the schemas that I use from online help fail, below was one of them plus the help in other links but none seem to work
Can someone help with a simple schema that I can copy across or a better site that explains the steps.
{
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"link": { "type": "string" },
"id": { "type": "string" },
"type": {},
"size": { "type": "integer" },
"referenceId": { "type": "string" },
"driveId": { "type": "string" },
"status": { "type": "integer" },
"uploadSessionUrl": {}
},
"required": ["name", "link", "id", "type", "size", "referenceId", "driveId", "status", "uploadSessionUrl"]
}
}