changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "classification": {
+ "description": "Classification of the IP activity",
+ "enum": [
+ "malicious",
+ "benign",
+ "unknown"
+ ],
+ "type": "string"
+ },
+ "ip": {
+ "description": "IPv4 address queried",
+ "type": "string"
+ },
+ "last_seen": {
+ "description": "ISO date when the IP was last observed",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "link": {
+ "description": "Deep link to GreyNoise visualization page for this IP",
+ "type": "string"
+ },
+ "message": {
+ "description": "Additional message or explanation",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Name or organization associated with the IP",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "noise": {
+ "description": "Whether the IP is classified as internet background noise",
+ "type": "boolean"
+ },
+ "observed": {
+ "description": "Whether GreyNoise has observed scanner activity from this IP",
+ "type": "boolean"
+ },
+ "riot": {
+ "description": "Whether the IP is a known good service (RIOT)",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "ip",
+ "observed",
+ "noise",
+ "riot",
+ "classification",
+ "name",
+ "last_seen",
+ "link",
+ "message"
+ ],
+ "type": "object"
+}