Aruba · Schema

SiteListResponse

CloudInfrastructureNetwork ManagementNetworkingSD-WANSecuritySwitchesWireless

Properties

Name Type Description
total integer Total number of sites.
count integer Number of sites returned.
sites array
View JSON Schema on GitHub

JSON Schema

aruba-sitelistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SiteListResponse",
  "title": "SiteListResponse",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of sites.",
      "example": 10
    },
    "count": {
      "type": "integer",
      "description": "Number of sites returned.",
      "example": 10
    },
    "sites": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Site"
      },
      "example": []
    }
  }
}