Microsoft Graph · Schema

microsoft.graph.groupSetting

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphgroupsetting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.groupSetting",
  "title": "microsoft.graph.groupSetting",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "groupSetting",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "displayName": {
          "type": "string",
          "description": "Display name of this group of settings, which comes from the associated template.",
          "nullable": true
        },
        "templateId": {
          "type": "string",
          "description": "Unique identifier for the tenant-level groupSettingTemplates object that's been customized for this group-level settings object. Read-only.",
          "nullable": true
        },
        "values": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.settingValue"
          },
          "description": "Collection of name-value pairs corresponding to the name and defaultValue properties in the referenced groupSettingTemplates object."
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.groupSetting"
}