changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of entries first seen within the window",
+ "type": "number"
+ },
+ "hours": {
+ "description": "Number of hours in the lookback window",
+ "type": "number"
+ },
+ "results": {
+ "description": "Blocklist entries first seen in the time window",
+ "items": {
+ "properties": {
+ "as_name": {
+ "description": "Autonomous System name",
+ "type": "string"
+ },
+ "as_number": {
+ "description": "Autonomous System number",
+ "type": "number"
+ },
+ "country": {
+ "description": "Country code or name",
+ "type": "string"
+ },
+ "first_seen": {
+ "description": "ISO timestamp of first observation",
+ "type": "string"
+ },
+ "hostname": {
+ "description": "Associated hostname",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ip_address": {
+ "description": "IP address",
+ "type": "string"
+ },
+ "last_online": {
+ "description": "ISO timestamp of last online status",
+ "type": "string"
+ },
+ "malware": {
+ "description": "Associated malware family name",
+ "type": "string"
+ },
+ "port": {
+ "description": "Port number",
+ "type": "number"
+ },
+ "status": {
+ "description": "Status (e.g. online, offline)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "ip_address"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "hours",
+ "count",
+ "results"
+ ],
+ "type": "object"
+}