Webex · Schema

CustomizedRegistrant

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
questionId number Unique identifier for the customized questions retrieved from the registration form.
answers array The answers for customized questions. If the question type is checkbox, more than one answer can be set.
View JSON Schema on GitHub

JSON Schema

webex-customizedregistrant-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomizedRegistrant",
  "title": "CustomizedRegistrant",
  "type": "object",
  "required": [
    "questionId",
    "answers"
  ],
  "properties": {
    "questionId": {
      "type": "number",
      "example": 330087,
      "description": "Unique identifier for the customized questions retrieved from the registration form."
    },
    "answers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AnswerForCustomizedQuestion"
      },
      "description": "The answers for customized questions. If the question type is checkbox, more than one answer can be set."
    }
  }
}