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 of number)

  • properties – the data entity properties, consisting of an array of objects each with the following name/value pairs:

    • name – the name of the property (type of string)

    • value – the value of the property (type of string)

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"
        }
    ]
}