changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "matches": {
+ "description": "Number of entries matching the filter criteria",
+ "type": "number"
+ },
+ "results": {
+ "description": "Filtered blocklist entries up to the limit",
+ "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"
+ },
+ "total": {
+ "description": "Total number of entries in the blocklist",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "matches",
+ "results"
+ ],
+ "type": "object"
+}