Wrong total in PermID response

Hello,


The request https://api.thomsonreuters.com/permid/search?q=ticker:AAPL gives the following answer:

{
    "result": {
        "organizations": {
            ... (not relevant for this question)
        },
        "instruments": {
            ... (not relevant for this question)
        },
        "quotes": {
            "entityType": "quotes",
            "total": 46,
            "start": 1,
            "num": 5,
            "entities": [
                {
                    ... (not relevant for this question)
                },
                {
                    ... (not relevant for this question)
                },
                {
                    ... (not relevant for this question)
                },
                {
                    ... (not relevant for this question)
                },
                {
                    ... (not relevant for this question)
                }
            ]
        }
    }
}


What the "total": 46 means? There are just 5 items in the results, so it should be "total": 5, right?

Best Answer