JSON Record Content Lists

Describes multiple lists of data field values (as name/value pairs), nested data records (if any), along with a number of additional properties for data record entities of a specific ID.

Structure

The structure consists of an array of JSON Record Content List structure objects.

Example

The following is an example of this structure:

[
    {
        "id": 45678,
        "table": "detail",
        "parentrecordid": 23456,
        "fields": [
            {
                "name": "ItemNumber",
                "value": "PSM002"
            },
            {
                "name": "ItemDesc",
                "value": "PSM Production (unlimited)"
            },
            {
                "name": "ItemUnitPrice",
                "value": "495.00"
            },
            {
                "name": "ItemOrdered",
                "value": "2"
            },
            {
                "name": "ItemTotal",
                "value": "990.00"
            }
        ]
    },
    {
        "id": 45679,
        "table": "detail",
        "parentrecordid": 23456,
        "fields": [
            {
                "name": "ItemNumber",
                "value": "PSM005"
            },
            {
                "name": "ItemDesc",
                "value": "Upgrade (Starter to Web)"
            },
            {
                "name": "ItemUnitPrice",
                "value": "495.00"
            },
            {
                "name": "ItemOrdered",
                "value": "1"
            }
            {
                "name": "ItemTotal",
                "value": "495.00"
            }
        ]
    }
]