Webex · Schema

WifiNetworkObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Indicates whether the wifi network is enabled.
authenticationMethod object Authentication method of wifi network.
ssidName string SSID name of the wifi network.
userId string User Id of the wifi network.
View JSON Schema on GitHub

JSON Schema

webex-wifinetworkobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WifiNetworkObject",
  "title": "WifiNetworkObject",
  "type": "object",
  "required": [
    "enabled",
    "authenticationMethod",
    "ssidName",
    "userId"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Indicates whether the wifi network is enabled."
    },
    "authenticationMethod": {
      "$ref": "#/components/schemas/AuthenticationMethodObject",
      "description": "Authentication method of wifi network."
    },
    "ssidName": {
      "type": "string",
      "example": "my_wifi_network",
      "description": "SSID name of the wifi network."
    },
    "userId": {
      "type": "string",
      "example": "test-user",
      "description": "User Id of the wifi network."
    }
  }
}