{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProbeList", "title": "ProbeList", "type": "object", "properties": { "probes": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "country": { "type": "string" }, "city": { "type": "string" }, "name": { "type": "string" }, "active": { "type": "boolean" }, "hostname": { "type": "string" }, "ip": { "type": "string" }, "ipv6": { "type": "string" } } }, "example": [] } } }