Juniper Networks · Schema

Admin

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
id string
name string
email string
first_name string
last_name string
phone string
privileges array
tags array
created_time number Unix timestamp
modified_time number Unix timestamp
View JSON Schema on GitHub

JSON Schema

juniper-admin-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Admin",
  "title": "Admin",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "first_name": {
      "type": "string"
    },
    "last_name": {
      "type": "string"
    },
    "phone": {
      "type": "string"
    },
    "privileges": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Privilege"
      }
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "created_time": {
      "type": "number",
      "description": "Unix timestamp"
    },
    "modified_time": {
      "type": "number",
      "description": "Unix timestamp"
    }
  }
}