Google Workspace · Schema

Groups

A paginated list of group resources.

CalendarCollaborationEmailProductivityStorageVideo Conferencing

Properties

Name Type Description
kind string The type of the API resource.
etag string ETag of the resource.
groups array A list of group objects.
nextPageToken string Token for retrieving the next page of results.
View JSON Schema on GitHub

JSON Schema

google-workspace-groups-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Groups",
  "title": "Groups",
  "type": "object",
  "description": "A paginated list of group resources.",
  "properties": {
    "kind": {
      "type": "string",
      "description": "The type of the API resource.",
      "default": "admin#directory#groups",
      "readOnly": true,
      "example": "example_value"
    },
    "etag": {
      "type": "string",
      "description": "ETag of the resource.",
      "readOnly": true,
      "example": "example_value"
    },
    "groups": {
      "type": "array",
      "description": "A list of group objects.",
      "items": {
        "$ref": "#/components/schemas/Group"
      },
      "example": []
    },
    "nextPageToken": {
      "type": "string",
      "description": "Token for retrieving the next page of results.",
      "example": "example_value"
    }
  }
}