LinkedIn · Schema

MultipleChoiceQuestionDetails

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
choices array
selectMultiple boolean
preferredFormComponent string
View JSON Schema on GitHub

JSON Schema

linkedin-multiplechoicequestiondetails-schema.json Raw ↑
{
  "$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"
    }
  }
}