action traccar_put_attributes_computed_id { label: "Update an Attribute" provider: traccar method: PUT path: "/attributes/computed/{id}" encoding: json input: { type: "object" properties: { attribute: { type: "string" } description: { type: "string" } expression: { type: "string" } id: { type: "integer" } type: { type: "string" description: "String|Number|Boolean" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { attribute: { type: "string" } description: { type: "string" } expression: { type: "string" } id: { type: "integer" } type: { type: "string" description: "String|Number|Boolean" } } } }