Hi All,
I have a flow which is trigged by entering information into the Forms and looks for approval to the right window. The error message show as picture 1. Comparing with another flow that can be used successfully, I found that there is an extra string here.
My current flow is as follows. I'm not sure if the yellow background part in the second picture is missing, and how can I confirm the string after "body/"?
It will be appreciated if someone could tell me how to change my code.
{
"type": "ParseJson",
"inputs": {
"content": "@triggerOutputs()?['body/resourceData']",
"schema": {
"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"
]
}
}
},
"runAfter": {
"Send_an_email_(V2)_1": [
"Succeeded"
]
},
"metadata": {
"operationMetadataId": "fc0540d7-bcf4-4e63-b800-1f66c1cdcf92"
}
}