changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Total number of BGP leak events",
+ "type": "number"
+ },
+ "events": {
+ "description": "List of BGP leak events",
+ "items": {
+ "properties": {
+ "finished_at": {
+ "description": "Event end timestamp",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Event identifier",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "leak_count": {
+ "description": "Number of leaked prefixes",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "leaker_asn": {
+ "description": "AS number of the leaker",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "leaker_name": {
+ "description": "Name of the leaker AS",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ongoing": {
+ "description": "Whether the leak is still ongoing",
+ "type": "boolean"
+ },
+ "origin_asns": {
+ "description": "ASNs of originated prefixes",
+ "items": {
+ "type": "number"
+ },
+ "type": "array"
+ },
+ "started_at": {
+ "description": "Event start timestamp",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "events"
+ ],
+ "type": "object"
+}