iotagent-node-lib
Version:
IoT Agent library to interface with NGSI Context Broker
38 lines • 794 B
JSON
{
"type": "object",
"properties": {
"actionType": {
"type": "string",
"enum": ["update"]
},
"entities": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"required": true
},
"type": {
"type": "string",
"required": true
},
"additionalProperties":{
"type": "object",
"properties": {
"type":{
"type": "string",
"required": true
},
"value":{
"type": "string",
"required": true
}
}
}
}
}
}
}
}