I’m learning the platform now and I’m trying to create simple device returning carbon dioxide concentration. However, recently the device stopped to return any value.
My response for state refresh looks like the following:
{
"headers": {
"schema": "st-schema",
"version": "1.0",
"interactionType": "stateRefreshResponse",
"requestId": "812a2101-ae7c-486c-8359-8d8fae520df9"
},
"deviceState": [
{
"externalDeviceId": "external-device-1",
"states": [
{
"component": "main",
"capability": "carbonDioxideMeasurement",
"attribute": "carbonDioxide",
"value": 526
}
]
}
]
}
After that I get the following:
{
"headers": {
"schema": "st-schema",
"version": "1.0",
"interactionType": "interactionResult",
"requestId": "812a2101-ae7c-486c-8359-8d8fae520df9"
},
"authentication": {
"tokenType": "Bearer",
"token": "It's strange you can't see it here. I promise I posted real token"
},
"deviceState": [
{
"externalDeviceId": "external-device-1",
"deviceError": [
{
"errorEnum": "BAD-RESPONSE",
"detail": "Missing namespace in capability 'carbonDioxideMeasurement'"
}
]
}
],
"originatingInteractionType": "stateRefreshResponse"
}
The documentation on this capability does not state any namespace. What am I doing wrong?