Webex · Schema

MulticastObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
hostAndPort string Specify the multicast group URL and listening port.
hasXmlAppUrl boolean Specify whether the multicast group URL has an XML application URL.
xmlAppTimeout number Specify the timeout for the XML application.
View JSON Schema on GitHub

JSON Schema

webex-multicastobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MulticastObject",
  "title": "MulticastObject",
  "type": "object",
  "required": [
    "hostAndPort",
    "hasXmlAppUrl"
  ],
  "properties": {
    "hostAndPort": {
      "type": "string",
      "example": "224.0.0.0:22",
      "description": "Specify the multicast group URL and listening port."
    },
    "hasXmlAppUrl": {
      "type": "boolean",
      "example": true,
      "description": "Specify whether the multicast group URL has an XML application URL."
    },
    "xmlAppTimeout": {
      "type": "number",
      "example": 10,
      "description": "Specify the timeout for the XML application."
    }
  }
}