SearchResultList Data Type

A list of paged results.

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

Example

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