Hi,
I copied a functioning workflow I had and changed some items in the workflow in relation to what SharePoint list it should attach to. When I try to run the workflow, I get the error:
"Unable to process template language expressions in action 'Parse_JSON' inputs at line '1' and column '39320': 'Required property 'content' expects a value but got null. Path ''.'."
Here is the schema I have that worked in my last workflow that I copied over to this workflow.
I have attached a couple screenshots to help visualize the issue.
Thanks
That is the correct syntax. Not sure why I typed the curly braces there. Its definitely the square brackets.
I was able to solve this problem using PStork1's answer, but with slightly different syntax:
"type": ["string", "null"]
Just in case that helps anyone.
Thank you!
There are two possible issues here.
1) The JSON schema that is autogenerated by Power Automate doesn't take into account that some properties may be Null. To fix that manually edit the schema for the affected properties like this: "type": ["string", "null"]. This will allow the property to be Null without developing an error.
2) The other issue would be if you need that property to be non-null. If that is the case then there is something else wrong with the flow and the info that is being returned.
Michael E. Gernaey
497
Super User 2025 Season 2
David_MA
436
Super User 2025 Season 2
Riyaz_riz11
244
Super User 2025 Season 2