Webex · Schema

GetSharedLineMemberList

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
model string Model name of device.
members array List of members.
maxLineCount number Maximum number of device ports.
View JSON Schema on GitHub

JSON Schema

webex-getsharedlinememberlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetSharedLineMemberList",
  "title": "GetSharedLineMemberList",
  "type": "object",
  "required": [
    "model",
    "maxLineCount"
  ],
  "properties": {
    "model": {
      "type": "string",
      "example": "Business Communicator - PC",
      "description": "Model name of device."
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GetSharedLineMemberItem"
      },
      "description": "List of members."
    },
    "maxLineCount": {
      "type": "number",
      "minimum": 1,
      "example": 10,
      "description": "Maximum number of device ports."
    }
  }
}