Microsoft Graph · Schema

microsoft.graph.groupSettingTemplate

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphgroupsettingtemplate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.groupSettingTemplate",
  "title": "microsoft.graph.groupSettingTemplate",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.directoryObject"
    },
    {
      "title": "groupSettingTemplate",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "description": {
          "type": "string",
          "description": "Description of the template.",
          "nullable": true
        },
        "displayName": {
          "type": "string",
          "description": "Display name of the template. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings.",
          "nullable": true
        },
        "values": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.settingTemplateValue"
          },
          "description": "Collection of settingTemplateValues that list the set of available settings, defaults and types that make up this template."
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.groupSettingTemplate"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.groupSettingTemplate"
}