Juniper Networks · Schema

IpReputation

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
ip string
threat_score integer Threat score from 0 (clean) to 10 (malicious)
categories array
country string
asn integer
last_seen string
feeds array
View JSON Schema on GitHub

JSON Schema

juniper-ipreputation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IpReputation",
  "title": "IpReputation",
  "type": "object",
  "properties": {
    "ip": {
      "type": "string"
    },
    "threat_score": {
      "type": "integer",
      "minimum": 0,
      "maximum": 10,
      "description": "Threat score from 0 (clean) to 10 (malicious)"
    },
    "categories": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "country": {
      "type": "string"
    },
    "asn": {
      "type": "integer"
    },
    "last_seen": {
      "type": "string",
      "format": "date-time"
    },
    "feeds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}