Microsoft Graph · Schema

virtualEventRegistrationQuestionAnswer

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
booleanValue boolean Boolean answer of the virtual event registration question. Only appears when answerInputType is boolean.
displayName string Display name of the registration question.
multiChoiceValues array Collection of text answer of the virtual event registration question. Only appears when answerInputType is multiChoice.
questionId string id of the virtual event registration question.
value string Text answer of the virtual event registration question. Appears when answerInputType is text, multilineText or singleChoice.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphvirtualeventregistrationquestionanswer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.virtualEventRegistrationQuestionAnswer",
  "title": "virtualEventRegistrationQuestionAnswer",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "booleanValue": {
      "type": "boolean",
      "description": "Boolean answer of the virtual event registration question. Only appears when answerInputType is boolean.",
      "nullable": true
    },
    "displayName": {
      "type": "string",
      "description": "Display name of the registration question.",
      "nullable": true
    },
    "multiChoiceValues": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "Collection of text answer of the virtual event registration question. Only appears when answerInputType is multiChoice."
    },
    "questionId": {
      "type": "string",
      "description": "id of the virtual event registration question.",
      "nullable": true
    },
    "value": {
      "type": "string",
      "description": "Text answer of the virtual event registration question. Appears when answerInputType is text, multilineText or singleChoice.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}