{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.virtualEventRegistrationCustomQuestion", "title": "microsoft.graph.virtualEventRegistrationCustomQuestion", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.virtualEventRegistrationQuestionBase" }, { "title": "virtualEventRegistrationCustomQuestion", "required": [ "@odata.type" ], "type": "object", "properties": { "answerChoices": { "type": "array", "items": { "type": "string", "nullable": true }, "description": "Answer choices when answerInputType is singleChoice or multiChoice." }, "answerInputType": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.virtualEventRegistrationQuestionAnswerInputType" }, { "type": "object", "nullable": true } ], "description": "Input type of the registration question answer. Possible values are text, multilineText, singleChoice, multiChoice, boolean, and unknownFutureValue." }, "@odata.type": { "type": "string", "default": "#microsoft.graph.virtualEventRegistrationCustomQuestion" } } } ], "x-ms-discriminator-value": "#microsoft.graph.virtualEventRegistrationCustomQuestion" }