Webex · Schema

AnswerSummaryItem

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
order string The order of the answer in the question.
value string The content of the answer.
totalRespondents number The total number of people who selected this answer.
isCorrect boolean Whether the answer is correct.
View JSON Schema on GitHub

JSON Schema

webex-answersummaryitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AnswerSummaryItem",
  "title": "AnswerSummaryItem",
  "type": "object",
  "properties": {
    "order": {
      "type": "string",
      "example": "1",
      "description": "The order of the answer in the question."
    },
    "value": {
      "type": "string",
      "example": "China",
      "description": "The content of the answer."
    },
    "totalRespondents": {
      "type": "number",
      "example": 10,
      "description": "The total number of people who selected this answer."
    },
    "isCorrect": {
      "type": "boolean",
      "example": true,
      "description": "Whether the answer is correct."
    }
  }
}