Microsoft Graph · Schema

userAttributeValuesItem

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isDefault boolean Determines whether the value is set as the default.
name string The display name of the property displayed to the user in the user flow.
value string The value that is set when this item is selected.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphuserattributevaluesitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.userAttributeValuesItem",
  "title": "userAttributeValuesItem",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isDefault": {
      "type": "boolean",
      "description": "Determines whether the value is set as the default."
    },
    "name": {
      "type": "string",
      "description": "The display name of the property displayed to the user in the user flow.",
      "nullable": true
    },
    "value": {
      "type": "string",
      "description": "The value that is set when this item is selected.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}