I have a property defined as boolean in my IoT Central Template.
{
"@id": "urn:CompanyName:state:schema:info2:schema:enhanced:2",
"description": {
"en": "Enhanced Boolean Value"
},
"displayName": {
"en": "Enhanced"
},
"name": "enhanced",
"schema": "boolean"
},
After sending the message from my IoT device, in the IoT Central portal raw data, when I expand the Timestamp column I see this
"enhanced": true,
But in the raw data column for the specific telemetry message, I see this
"enhanced":"On",
Why is the true changed to "On"? Is there a way I can make the telemetry column display as true?
