Description
The Thread Context Stack is currently represented like this in JSONLayout:
Current
"ndc":[foo, bar]"
This is not correct JSON syntax, and does not make proper use of the JSON data format. The Thread Context Stack should be represented as a JSON array:
Suggested
"ndc": ["foo", "bar"]