azure-functions-powershell-worker
azure-functions-powershell-worker copied to clipboard
Nested JSON Objects are Case Sensitive Hashtables
Explanation: When parsing a nested object within the HTTP body of the request, the nested object is de-serialized as a case-sensitive hashtable in PowerShell. They top-level object is converted to a case-insensitive table, however nested object's aren't.
{ "nestedObject": { "PropertyName": "TEST" }, "id": 0, "PropertyName": "TEST" }