JSON Record Content Lists (Explicit Types)

Describes multiple lists of data field values (as name/value pairs), a data table schema, 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 (Explicit Types) structure objects.

Example

The following is an example of this structure:

[
    {
        "schema": {
            "columns": {
                "ItemNumber": "STRING",
                "ItemDesc": "STRING",
                "ItemUnitPrice": "CURRENCY",
                "ItemOrdered": "INTEGER",
                "ItemTotal": "CURRENCY",
                "ExtraData": "STRING"
            }
        },
        "id": 45678,
        "fields": {
            "ItemNumber": "PSM002",
            "ItemDesc": "PSM Production (unlimited)",
            "ItemUnitPrice": "495.00",
            "ItemOrdered": 2,
            "ItemTotal": "990.00",
            "ExtraData": ""
        }
    },
    {
        "schema": {
            "columns": {
                "ItemNumber": "STRING",
                "ItemDesc": "STRING",
                "ItemUnitPrice": "CURRENCY",
                "ItemOrdered": "INTEGER",
                "ItemTotal": "CURRENCY",
                "ExtraData": "STRING"
            }
        },
        "id": 45679,
        "fields": {
            "ItemNumber": "PSM005",
            "ItemDesc": "Upgrade (Starter to Web)",
            "ItemUnitPrice": "495.00",
            "ItemOrdered": 1,
            "ItemTotal": "495.00",
            "ExtraData": ""
        }
    }
]