Description
Hi,
As we are doing integration of IoT Agent with Scorpio Broker.
For Northbound the data coming from IoT Agent is:
{
"id": "urn:ngsi-ld:Device:water001",
"type": "Device",
"heartRate": {
"type": "Property",
"value": {
"@type": "Intangible",
"@value": null
},
"unitCode": "5K"
},
"status": {
"type": "Property",
"value": {
"@type": "Intangible",
"@value": null
}
},
"location": {
"type": "GeoProperty",
"value": {
"type": "Point",
"coordinates": [0, 0]
}
},
"controlledAsset": {
"type": "Relationship",
"object": "urn:ngsi-ld:Building:barn001"
},
"category": {
"type": "Property",
"value": "sensor"
},
"supportedProtocol": {
"type": "Property",
"value": "ul20"
},
"on_status": {
"type": "Property",
"value": {
"@type": "commandStatus",
"@value": "UNKNOWN"
}
},
"on_info": {
"type": "Property",
"value": {
"@type": "commandResult",
"@value": " "
}
},
"off_status": {
"type": "Property",
"value": {
"@type": "commandStatus",
"@value": "UNKNOWN"
}
},
"off_info": {
"type": "Property",
"value": {
"@type": "commandResult",
"@value": " "
}
},
"on": {
"type": "command",
"value": ""
},
"off": {
"type": "command",
"value": ""
}
}
But NGSI-LD does not supports the type: "command" , as the issue regarding this has already been raised
FIWARE/context.Orion-LD#919
Is there any update on this or when it is plan to fix this issue?
Thanks,
Amit.