Juniper Networks · Schema

Alarm

AutomationCloudData CenterEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
id string Alarm unique identifier.
type string Alarm type identifier.
severity string Alarm severity level.
group string Alarm group category.
count integer Number of occurrences.
last_seen number Last occurrence timestamp in epoch seconds.
acked boolean Whether the alarm has been acknowledged.
View JSON Schema on GitHub

JSON Schema

juniper-networks-alarm-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Alarm",
  "title": "Alarm",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Alarm unique identifier."
    },
    "type": {
      "type": "string",
      "description": "Alarm type identifier."
    },
    "severity": {
      "type": "string",
      "enum": [
        "critical",
        "warn",
        "info"
      ],
      "description": "Alarm severity level."
    },
    "group": {
      "type": "string",
      "description": "Alarm group category."
    },
    "count": {
      "type": "integer",
      "description": "Number of occurrences."
    },
    "last_seen": {
      "type": "number",
      "description": "Last occurrence timestamp in epoch seconds."
    },
    "acked": {
      "type": "boolean",
      "description": "Whether the alarm has been acknowledged."
    }
  }
}