Webex · Schema

QuestionOptionObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id number Unique identifier for the question option.
value string Value for the question option.
View JSON Schema on GitHub

JSON Schema

webex-questionoptionobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QuestionOptionObject",
  "title": "QuestionOptionObject",
  "type": "object",
  "required": [
    "id",
    "value"
  ],
  "properties": {
    "id": {
      "type": "number",
      "example": 1,
      "description": "Unique identifier for the question option."
    },
    "value": {
      "type": "string",
      "example": "Yes",
      "description": "Value for the question option."
    }
  }
}