Aruba · Schema

ClientListResponse

CloudInfrastructureNetwork ManagementNetworkingSD-WANSecuritySwitchesWireless

Properties

Name Type Description
total integer Total number of clients matching the query.
count integer Number of clients returned.
clients array
View JSON Schema on GitHub

JSON Schema

aruba-clientlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientListResponse",
  "title": "ClientListResponse",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of clients matching the query.",
      "example": 10
    },
    "count": {
      "type": "integer",
      "description": "Number of clients returned.",
      "example": 10
    },
    "clients": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Client"
      },
      "example": []
    }
  }
}