Auth0 · Schema

ReplaceSynchronizedGroupsRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
groups array Array of Google Workspace Directory group objects to synchronize.
View JSON Schema on GitHub

JSON Schema

auth0-replacesynchronizedgroupsrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReplaceSynchronizedGroupsRequestContent",
  "title": "ReplaceSynchronizedGroupsRequestContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "groups"
  ],
  "properties": {
    "groups": {
      "type": "array",
      "description": "Array of Google Workspace Directory group objects to synchronize.",
      "items": {
        "$ref": "#/components/schemas/SynchronizedGroupPayload"
      }
    }
  }
}