我们已经在 Orion Context Broker 中创建了一个实体,我们需要添加一个属性标签。结构类似于:
<?xml version="1.0" encoding="UTF-8"?>
<updateContextRequest>
<contextElementList>
<contextElement>
<entityId type="entity_id" isPattern="false">
<id>entity_id</id>
</entityId>
<contextAttributeList>
<contextAttribute>
<name>param1_name</name>
<type>param1_type</type>
<contextValue>param1_</contextValue>
</contextAttribute>
<contextAttribute>
<name>param2_name</name>
<type>param2_type</type>
<contextValue>param2_value</contextValue>
</contextAttribute>
</contextAttributeList>
</contextElement>
</contextElementList>
<updateAction>APPEND</updateAction>
</updateContextRequest>
我们需要删除实体并使用新属性重新创建它,或者您可以添加属性而无需删除它?
如何删除和编辑它?(如果可能,请编辑)
问候,伊斯梅尔