Hello
I created Microsoft Forms that follows below path.

I think until "add a row into a table" the flow works smoothly since it reflects to my excel on the sharepoint.
However, I'm not sure how to make it with condition flow after parse JASON.
I want to make condition that says
If there's no attachment file: Send automated outlook message directly.
If there's attachment file: Get the file detail and attached it to automated outlook message.
Could you please kindly give me some advice what I should put to conditon.

Below is the detail of what I wanna do through Parse JSON and the code.

{
"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"
]
}
}
It's my first time to ask here, so if there's any other information needed, please let me know.
Andy