Juniper Networks · Schema

SiteGroup

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
id string
org_id string
name string
site_ids array
created_time number
modified_time number
View JSON Schema on GitHub

JSON Schema

juniper-sitegroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SiteGroup",
  "title": "SiteGroup",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "org_id": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "site_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      }
    },
    "created_time": {
      "type": "number"
    },
    "modified_time": {
      "type": "number"
    }
  }
}