Errormessage:
Unable to process template language expressions in action 'Parse_JSON' inputs at line '0' and column '0': 'Required property 'content' expects a value but got null. Path ''.'.
About my workflow:
1 - Microsoft Form is filled and if necessary a picture is uploaded
2 - If a picture is uploaded, the flow is running without problems, but if there are no picture uploaded i get this message
I have an idea how to solve the problem => with a condition (some steps would be duplicated by this: Subsequent steps)
is it possible to solve this problem more "professionally"?
Parse JSON:
{
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"link": {
"type": "string"
},
"id": {
"type": [
"string",
"null"
]
},
"type": {},
"size": {
"type": "integer"
},
"referenceId": {
"type": "string"
},
"driveId": {
"type": "string"
},
"status": {
"type": "integer"
},
"uploadSessionUrl": {}
},
"required": [
"name",
"link",
"id",
"type",
"size",
"referenceId",
"driveId",
"status",
"uploadSessionUrl"
]
}
}