Webex · Schema

EnhancedMulticastObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
xmlAppUrl string Specify the URL for the XML application.
multicastList array Specify up to 10 multicast group URLs each with a unique listening port, an XML application URL, and a timeout.
View JSON Schema on GitHub

JSON Schema

webex-enhancedmulticastobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnhancedMulticastObject",
  "title": "EnhancedMulticastObject",
  "type": "object",
  "required": [
    "multicastList"
  ],
  "properties": {
    "xmlAppUrl": {
      "type": "string",
      "example": "http://127.0.0.1:8080/",
      "description": "Specify the URL for the XML application."
    },
    "multicastList": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MulticastObject"
      },
      "description": "Specify up to 10 multicast group URLs each with a unique listening port, an XML application URL, and a timeout."
    }
  }
}