SearchDataObjectsResponse

Response for a search request.

JSON representation
{
  "results": [
    {
      object (SearchResult)
    }
  ],
  "nextPageToken": string
}
Fields
results[]

object (SearchResult)

Output only. The list of dataObjects that match the search criteria.

nextPageToken

string

Output only. A token to retrieve next page of results. Pass to [DataObjectSearchService.SearchDataObjectsRequest.page_token][] to obtain that page.

SearchResult

A single search result.

JSON representation
{
  "dataObject": {
    object (DataObject)
  },
  "distance": number
}
Fields
dataObject

object (DataObject)

Output only. The matching data object.

distance

number

Output only. The similarity distance.