{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MultipleChoiceQuestionDetails", "title": "MultipleChoiceQuestionDetails", "type": "object", "properties": { "choices": { "type": "array", "items": { "$ref": "#/components/schemas/QuestionChoice" } }, "selectMultiple": { "type": "boolean", "example": false }, "preferredFormComponent": { "type": "string", "enum": [ "RADIO_BUTTONS", "DROPDOWN", "CHECKBOXES" ], "example": "RADIO_BUTTONS" } } }