Juniper Networks · Schema

UrlReputation

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
url string
threat_score integer
categories array
host string
last_seen string
View JSON Schema on GitHub

JSON Schema

juniper-urlreputation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UrlReputation",
  "title": "UrlReputation",
  "type": "object",
  "properties": {
    "url": {
      "type": "string"
    },
    "threat_score": {
      "type": "integer",
      "minimum": 0,
      "maximum": 10
    },
    "categories": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "host": {
      "type": "string"
    },
    "last_seen": {
      "type": "string",
      "format": "date-time"
    }
  }
}