Aruba · Schema

AccessPointListResponse

CloudInfrastructureNetwork ManagementNetworkingSD-WANSecuritySwitchesWireless

Properties

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

JSON Schema

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