I have an HTTP request that pulls JSON from an API. I sometimes get records that are missing fields. Not empty but simply missing.
When I run a Select against the HTTP results, I get...
The template language expression 'item()['PlacedOn']' cannot be evaluated because property 'PlacedOn' doesn't exist
And a review of the incoming JSON shows some records with that property and some without. How can I get around that error and either fill the property as blank or ignore records that do not have it?