Microsoft Graph · Schema

personOrGroupColumn

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
allowMultipleSelection boolean Indicates whether multiple values can be selected from the source.
chooseFromType string Whether to allow selection of people only, or people and groups. Must be one of peopleAndGroups or peopleOnly.
displayAs string How to display the information about the person or group chosen. See below.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphpersonorgroupcolumn-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.personOrGroupColumn",
  "title": "personOrGroupColumn",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "allowMultipleSelection": {
      "type": "boolean",
      "description": "Indicates whether multiple values can be selected from the source.",
      "nullable": true
    },
    "chooseFromType": {
      "type": "string",
      "description": "Whether to allow selection of people only, or people and groups. Must be one of peopleAndGroups or peopleOnly.",
      "nullable": true
    },
    "displayAs": {
      "type": "string",
      "description": "How to display the information about the person or group chosen. See below.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}