{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListSynchronizedGroupsResponseContent",
"title": "ListSynchronizedGroupsResponseContent",
"type": "object",
"additionalProperties": false,
"required": [
"groups"
],
"properties": {
"groups": {
"type": "array",
"description": "Array of Google Workspace group ids configured for synchronization.",
"items": {
"$ref": "#/components/schemas/SynchronizedGroupPayload"
}
},
"next": {
"type": "string",
"description": "The cursor to be used as the \"from\" query parameter for the next page of results."
}
}
}