Valeiot Object
Overview
The Valeiot Object is a structured data format. It's flexible and used to represent non time series data. Each object contains the following key fields:
value(object) – e.g.{"address": "Avenue X", "number": 118}id(number) – e.g.62356- Information generated by the system.
key(string) – e.g.,"client_address"updatedAt(RFC3339 timestamp) e.g."2025-03-25T21:54:33.177996Z"- If left null, the system will automatically update it to the current timestamp when modified.
Example:
{
"value": {
"address": "Avenue X",
"number": 118
},
"id": 3,
"key": "client_address",
"updatedAt": "2025-03-25T21:54:33.177996Z"
}
Edition
The editable fields are value and key.
Deletion
Objects can be deleted using either their id or key.
Fetching
Objects can be fetched using either their id or key.