Juniper Networks · Schema

RouteTable

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
table-name string
destination-count integer
total-route-count integer
active-route-count integer
rt array
View JSON Schema on GitHub

JSON Schema

juniper-routetable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RouteTable",
  "title": "RouteTable",
  "type": "object",
  "properties": {
    "table-name": {
      "type": "string"
    },
    "destination-count": {
      "type": "integer"
    },
    "total-route-count": {
      "type": "integer"
    },
    "active-route-count": {
      "type": "integer"
    },
    "rt": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "rt-destination": {
            "type": "string"
          },
          "rt-entry": {
            "type": "object",
            "properties": {
              "active-tag": {
                "type": "string"
              },
              "protocol-name": {
                "type": "string"
              },
              "preference": {
                "type": "integer"
              },
              "nh": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "to": {
                      "type": "string"
                    },
                    "via": {
                      "type": "string"
                    },
                    "nh-type": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}