{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/access_gsuite_group_rule", "title": "Google Workspace group", "description": "Matches a group in Google Workspace.\nRequires a Google Workspace identity provider.", "properties": { "gsuite": { "properties": { "email": { "description": "The email of the Google Workspace group.", "example": "devs@cloudflare.com", "type": "string" }, "identity_provider_id": { "description": "The ID of your Google Workspace identity provider.", "example": "ea85612a-29c8-46c2-bacb-669d65136971", "type": "string" } }, "required": [ "email", "identity_provider_id" ], "type": "object" } }, "required": [ "gsuite" ], "type": "object" }