JSON Name/Value List
Describes a list of properties (each as a name/value pair) for a data entity of a specific ID.
Structure
The structure consists of an object with the following name/value pairs:
-
id– the data entity identifier (type ofnumber) -
properties– the data entity properties, consisting of anarrayofobjectseach with the following name/value pairs: -
name– the name of the property (type ofstring) -
value– the value of the property (type ofstring)
Example
The following is an example of this structure:
{
"id": 12345,
"properties": [
{
"name": "start",
"value": "2015-01-01 00:00:00T-0500"
},
{
"name": "end",
"value": "2015-12-31 23:59:59T-0500"
}
]
}