Microsoft Graph · Schema

choiceColumn

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
allowTextEntry boolean If true, allows custom values that aren't in the configured choices.
choices array The list of values available for this column.
displayAs string How the choices are to be presented in the UX. Must be one of checkBoxes, dropDownMenu, or radioButtons
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphchoicecolumn-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.choiceColumn",
  "title": "choiceColumn",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "allowTextEntry": {
      "type": "boolean",
      "description": "If true, allows custom values that aren't in the configured choices.",
      "nullable": true
    },
    "choices": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "The list of values available for this column."
    },
    "displayAs": {
      "type": "string",
      "description": "How the choices are to be presented in the UX. Must be one of checkBoxes, dropDownMenu, or radioButtons",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}