azure-functions-powershell-worker icon indicating copy to clipboard operation
azure-functions-powershell-worker copied to clipboard

Nested JSON Objects are Case Sensitive Hashtables

Open ZanattaMichael opened this issue 5 years ago • 0 comments

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" }

ZanattaMichael avatar Mar 16 '20 04:03 ZanattaMichael