GroupFindingsResponse

Response message for group by findings.

JSON representation
{
  "groupByResults": [
    {
      object (GroupResult)
    }
  ],
  "nextPageToken": string,
  "totalSize": integer
}
Fields
groupByResults[]

object (GroupResult)

Group results. There exists an element for each existing unique combination of property/values. The element contains a count for the number of times those specific property/values appear.

nextPageToken

string

Token to retrieve the next page of results, or empty if there are no more results.

totalSize

integer

The total number of results matching the query.

GroupResult

Result containing the properties and count of a groupBy request.

JSON representation
{
  "properties": {
    string: value,
    ...
  },
  "count": string
}
Fields
properties

map (key: string, value: value (Value format))

Properties matching the groupBy fields in the request.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

count

string (int64 format)

Total count of resources for the given properties.