JSON Content Item Identifier List

Describes a list of content item/data record entity identifier pairs (as name/value pairs) for a specific content set or job entity.

Structure

The structure consists of an object with the following name/value pairs:

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

    • item – the content item entity identifier (type of number)

    • record – the data record entity identifier (type of number)

Example

The following is an example of this structure:

{
    "identifiers": [
        {
            "item": 12345,
            "record": 54321
        },
        {
            "item": 23456,
            "record":  65432
        },
        {
            "item": 34567,
            "record": 76543
        }
    ]
}