SearchResultList Data Type

A list of paged results.

Properties
name data type description
first number The 0-based index of the first result included in the list.
count number The number of results returned.
total number The total number of matching results.
next string Path that can be used to retrieve the next page of results.
items array of object The list of results.

Example

{
  "first" : 0,
  "count" : 12345,
  "total" : 12345,
  "next" : "...",
  "items" : [ { }, { } ]
}