Juniper Networks · Schema

ApiToken

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
id string
key string The API token value (only returned on creation)
name string
privileges array
created_time number
View JSON Schema on GitHub

JSON Schema

juniper-apitoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiToken",
  "title": "ApiToken",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "key": {
      "type": "string",
      "description": "The API token value (only returned on creation)"
    },
    "name": {
      "type": "string"
    },
    "privileges": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Privilege"
      }
    },
    "created_time": {
      "type": "number"
    }
  }
}