{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/magic-visibility_mnm_config_warp_device", "title": "magic-visibility_mnm_config_warp_device", "description": "Object representing a warp device with an ID and name.", "properties": { "id": { "description": "Unique identifier for the warp device.", "example": "5360368d-b351-4791-abe1-93550dabd351", "type": "string" }, "name": { "description": "Name of the warp device.", "example": "My warp device", "type": "string" }, "router_ip": { "description": "IPv4 CIDR of the router sourcing flow data associated with this warp device. Only /32 addresses are currently supported.", "example": "203.0.113.1", "type": "string" } }, "required": [ "id", "name", "router_ip" ], "type": "object" }