Microsoft Graph · Schema
bookingQuestionAnswer
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| answer | string | The answer given by the user in case the answerInputType is text. |
| answerInputType | object | The expected answer type. The possible values are: text, radioButton, unknownFutureValue. |
| answerOptions | array | In case the answerInputType is radioButton, this will consists of a list of possible answer values. |
| isRequired | boolean | Indicates whether it is mandatory to answer the custom question. |
| question | string | The question. |
| questionId | string | The ID of the custom question. |
| selectedOptions | array | The answers selected by the user. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.bookingQuestionAnswer",
"title": "bookingQuestionAnswer",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"answer": {
"type": "string",
"description": "The answer given by the user in case the answerInputType is text.",
"nullable": true
},
"answerInputType": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.answerInputType"
},
{
"type": "object",
"nullable": true
}
],
"description": "The expected answer type. The possible values are: text, radioButton, unknownFutureValue."
},
"answerOptions": {
"type": "array",
"items": {
"type": "string",
"nullable": true
},
"description": "In case the answerInputType is radioButton, this will consists of a list of possible answer values."
},
"isRequired": {
"type": "boolean",
"description": "Indicates whether it is mandatory to answer the custom question.",
"nullable": true
},
"question": {
"type": "string",
"description": "The question.",
"nullable": true
},
"questionId": {
"type": "string",
"description": "The ID of the custom question.",
"nullable": true
},
"selectedOptions": {
"type": "array",
"items": {
"type": "string",
"nullable": true
},
"description": "The answers selected by the user."
},
"@odata.type": {
"type": "string"
}
}
}