JSON Record Content Lists (Fields Only)

Describes multiple lists of data field values (as name/value pairs) for a data record, used to update existing data record entities of a specific ID.

Structure

The structure consists of an array of JSON Record Content List (Fields Only) structure objects.

Example

The following is an example of this structure:

[
    {
        "id": 12345,
        "fields": [
            {
                "name": "FirstName",
                "value": "Benjamin"
            },
            {
                "name": "LastName",
                "value": "Verret"
            }
        ]
    },
    {
        "id": 23456,
        "fields": [
            {
                "name": "FirstName",
                "value": "Dianne"
            },
            {
                "name": "LastName",
                "value": "Straka"
            }
        ]
    }
]