My Flow works as long as there is an image in the column that the api is checking : Vehicle 2
the Empty Photo fields are Ok. I just want to get past the Null Value for the Photo Fields that stops the flow.

The error gets thrown on the PARSE JSON-Photo2 it will sometimes have a null value. which means no photo added, which is fine. t
How do I setup a condition to check for Null value?
Would this work?
"type": "If",
"expression": {
"equals": [
"@outputs('Send_an_HTTP_request_to_SharePoint2')?['body']?['d']?['Vehicle_x0020_2_x0']",
"@null"
]
}
How do I setup the condition prior to the Jason Step and if there is a Null value continue, as it is OK to have Null values.
I want the flow to run image or no image.