Juniper Networks · Schema

User

AutomationCloudData CenterEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
@key integer User internal ID.
name string Username.
firstName string
lastName string
email string
status string
roles array Assigned role names.
View JSON Schema on GitHub

JSON Schema

juniper-networks-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/User",
  "title": "User",
  "type": "object",
  "properties": {
    "@key": {
      "type": "integer",
      "description": "User internal ID."
    },
    "name": {
      "type": "string",
      "description": "Username."
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Disabled"
      ]
    },
    "roles": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Assigned role names."
    }
  }
}