Juniper Networks · Schema

VniPool

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
id string
label string
ranges array
status string
used integer
total integer
View JSON Schema on GitHub

JSON Schema

juniper-vnipool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VniPool",
  "title": "VniPool",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "label": {
      "type": "string"
    },
    "ranges": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "first": {
            "type": "integer"
          },
          "last": {
            "type": "integer"
          }
        }
      }
    },
    "status": {
      "type": "string"
    },
    "used": {
      "type": "integer"
    },
    "total": {
      "type": "integer"
    }
  }
}