CommScope Holding · Schema

RUCKUS One Network

Schema for a Wi-Fi network resource in the RUCKUS One API.

Access PointsCablingConnectivityICX SwitchesInfrastructureNetworkingRUCKUSWi-FiFortune 1000

Properties

Name Type Description
id string RUCKUS One-assigned network UID.
name string Display name for the network.
ssid string Service set identifier broadcast by APs.
security string Security mode for the network.
venueId string UID of the venue this network belongs to.
vlanId integer Optional VLAN tag.
View JSON Schema on GitHub

JSON Schema

ruckus-one-network-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/commscope-holding/refs/heads/main/json-schema/ruckus-one-network-schema.json",
  "title": "RUCKUS One Network",
  "description": "Schema for a Wi-Fi network resource in the RUCKUS One API.",
  "type": "object",
  "required": ["name", "ssid"],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "RUCKUS One-assigned network UID."
    },
    "name": {
      "type": "string",
      "description": "Display name for the network."
    },
    "ssid": {
      "type": "string",
      "description": "Service set identifier broadcast by APs."
    },
    "security": {
      "type": "string",
      "enum": ["open", "wpa2", "wpa3", "wpa2wpa3", "dpsk"],
      "description": "Security mode for the network."
    },
    "venueId": {
      "type": "string",
      "format": "uuid",
      "description": "UID of the venue this network belongs to."
    },
    "vlanId": {
      "type": "integer",
      "minimum": 1,
      "maximum": 4094,
      "description": "Optional VLAN tag."
    }
  }
}