Juniper Networks · Schema

Anomaly

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
id string
type string
severity string
role string
anomaly_type string
expected string
actual string
identity object
View JSON Schema on GitHub

JSON Schema

juniper-anomaly-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Anomaly",
  "title": "Anomaly",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "type": {
      "type": "string"
    },
    "severity": {
      "type": "string",
      "enum": [
        "critical",
        "warning",
        "info"
      ]
    },
    "role": {
      "type": "string"
    },
    "anomaly_type": {
      "type": "string"
    },
    "expected": {
      "type": "string"
    },
    "actual": {
      "type": "string"
    },
    "identity": {
      "type": "object"
    }
  }
}