Webex · Schema

AnswerForCustomizedQuestion

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
optionId number Unique identifier for the option.
answer string The content of the answer or the option for this question.
View JSON Schema on GitHub

JSON Schema

webex-answerforcustomizedquestion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AnswerForCustomizedQuestion",
  "title": "AnswerForCustomizedQuestion",
  "type": "object",
  "required": [
    "answer"
  ],
  "properties": {
    "optionId": {
      "type": "number",
      "example": 1,
      "description": "Unique identifier for the option."
    },
    "answer": {
      "type": "string",
      "example": "green",
      "description": "The content of the answer or the option for this question."
    }
  }
}