I did not found a real way to directly test against null
or undefined
but the following workaround should work when choosing a sufficient 'random' string as fallback for the coalesce
...
"propExists": "@equals(coalesce(triggerBody()?.prop, 'Fallback42'), 'Fallback42')"
...
For example the following Logic App would echo back the property prop
and whether it was actually specified or not
{
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"actions": {
"Response": {
"inputs": {
"body": {
"propNull": "@equals(coalesce(triggerBody()?.prop, 'undefined'), 'undefined')",
"prop": "@triggerBody()?.prop"
},
"statusCode": 200
},
"runAfter": {},
"type": "Response"
}
},
"contentVersion": "1.0.0.0",
"outputs": {},
"parameters": {},
"triggers": {
"request": {
"inputs": {
"schema": {}
},
"kind": "Http",
"type": "Request"
}
}
}
so that a request with
{
"prop": "test"
}
results in
{
"prop": "test",
"propNull": false
}
whereas a request with
{
"propOther": "test"
}
results in
{
"prop": null,
"propNull": true
}