Microsoft Graph · Schema

settingValue

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
name string Name of the setting (as defined by the groupSettingTemplate).
value string Value of the setting.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsettingvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.settingValue",
  "title": "settingValue",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the setting (as defined by the groupSettingTemplate).",
      "nullable": true
    },
    "value": {
      "type": "string",
      "description": "Value of the setting.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}