JSON Record Content Lists (simplified)

Describes lists of data field and data table values (as name/value pairs) for multiple data records.

Structure

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

Example

The following is an example of this structure:

[
	{
		"__recordid": 75316,
		"Group": "CU00048376",
		"Name": "COMP248",
		"ExtraData": "",
		"detail": [
			{
				"FirstName": "Alex",
				"LastName": "Barret",
				"Date": "2023-02-23T14:00:00Z",
				"ExtraData": ""
			},
			{
				"FirstName": "Nail",
				"LastName": "Nilson",
				"Date": "2023-04-20T10:00:00Z",
				"ExtraData": ""
			}
		]
	},
	{
		"__recordid": 75328,
		"Group": "AB00012345",
		"Name": "COMP249",
		"ExtraData": "",
		"detail": [
			{
				"FirstName": "Dianne",
				"LastName": "Straka",
				"Date": "2023-03-23T14:00:00Z",
				"ExtraData": ""
			},
			{
				"FirstName": "Peter",
				"LastName": "Parker",
				"Date": "2023-05-20T21:00:00Z",
				"ExtraData": ""
			}
		]
	},
]