I'm using the Newtonsoft JSON tools to deserialize a data request from an AF attribute, and it blows up when it reaches a nested value that is another JSON object with 'Shutdown' embedded in it, like this:
{"Timestamp":"2024-01-25T03:30:00Z","Value":{"Name":"Shutdown","Value":254,"IsSystem":true}}
In my serialization class I've tried using both 'object' and 'string' as the type for the Value property, but it chokes on both. So I am wondering if I need to filter out these values, and if so, how? Or is there another approach?