{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.accessPackageMultipleChoiceQuestion", "title": "microsoft.graph.accessPackageMultipleChoiceQuestion", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.accessPackageQuestion" }, { "title": "accessPackageMultipleChoiceQuestion", "required": [ "@odata.type" ], "type": "object", "properties": { "choices": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.accessPackageAnswerChoice" }, "description": "List of answer choices." }, "isMultipleSelectionAllowed": { "type": "boolean", "description": "Indicates whether requestor can select multiple choices as their answer.", "nullable": true }, "@odata.type": { "type": "string", "default": "#microsoft.graph.accessPackageMultipleChoiceQuestion" } } } ], "x-ms-discriminator-value": "#microsoft.graph.accessPackageMultipleChoiceQuestion" }