DiscoverText API - Dataset Unit Codings and Classifications

GET
https://api.discovertext.com/api/v1/datasets/{dataset_id}/coding
Return Value: A collection of Coded Items for the dataset:
{
    meta: {
        count: (item count),
        offset: (current offset),
        limit: (current limit)
    },
    items: [ { coded item }, { coded item }, ...],
    links: [ { paging links } ]
}
        

Each coded item has the following structure:

{
    "id": {unit id},
    "codes": [ { 
        "codeId": {code id}, 
        "code": "{code}",
        "classScore": {classification score}
     }, ... ]
}