Webex · Schema

RespondentsReferenceLinks

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
links object The pagination links of this question's respondent.
items array An array of answers.
View JSON Schema on GitHub

JSON Schema

webex-respondentsreferencelinks-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RespondentsReferenceLinks",
  "title": "RespondentsReferenceLinks",
  "type": "object",
  "properties": {
    "links": {
      "$ref": "#/components/schemas/Link",
      "description": "The pagination links of this question's respondent."
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Respondent"
      },
      "description": "An array of answers."
    }
  }
}