GroupUpdate

Properties that can be updated on an existing group.

AuthenticationAuthorizationIdentityMicrosoftMicrosoft EntraOAuthOpenID ConnectSAMLSCIMSingle Sign-OnZero Trust

Properties

Name Type Description
displayName string
description string
mailNickname string
visibility string
membershipRule string
membershipRuleProcessingState string
preferredLanguage string
classification string
View JSON Schema on GitHub

JSON Schema

microsoft-azure-active-directory-groupupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupUpdate",
  "title": "GroupUpdate",
  "type": "object",
  "description": "Properties that can be updated on an existing group.",
  "properties": {
    "displayName": {
      "type": "string",
      "example": "example_value"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "mailNickname": {
      "type": "string",
      "example": "example_value"
    },
    "visibility": {
      "type": "string",
      "enum": [
        "Public",
        "Private",
        "HiddenMembership"
      ],
      "example": "Public"
    },
    "membershipRule": {
      "type": "string",
      "example": "example_value"
    },
    "membershipRuleProcessingState": {
      "type": "string",
      "enum": [
        "On",
        "Paused"
      ],
      "example": "On"
    },
    "preferredLanguage": {
      "type": "string",
      "example": "example_value"
    },
    "classification": {
      "type": "string",
      "example": "example_value"
    }
  }
}