Aruba · Schema

SiteDetail

CloudInfrastructureNetwork ManagementNetworkingSD-WANSecuritySwitchesWireless
View JSON Schema on GitHub

JSON Schema

aruba-sitedetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SiteDetail",
  "title": "SiteDetail",
  "allOf": [
    {
      "$ref": "#/components/schemas/Site"
    },
    {
      "type": "object",
      "properties": {
        "associated_devices": {
          "type": "array",
          "description": "Devices associated with this site.",
          "items": {
            "type": "object",
            "properties": {
              "serial": {
                "type": "string"
              },
              "device_type": {
                "type": "string"
              },
              "macaddr": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  ]
}