Minimal HTTP API for Law-N:
- Accepts
network.routesrows over HTTP - Stores them in an in-memory table
- Exposes simple endpoints to:
- list current rows
- load/replace rows
- run an N-SQL query over
network.routes(iflaw-n-sql-coreis available)
This is the first Law-N microservice: a small but real step toward CLSI (Cloud Layer Signal Interface).
-
POST /tables/network-routes/load
Load or replacenetwork.routeswith JSON rows -
GET /tables/network-routes
Read back all rows (with optional basic filters) -
POST /query/nsql
Run an N-SQL query like:SELECT device, tower_id, latency_ms, signal_quality FROM network.routes WHERE g_layer = '5G' AND signal_quality > 0.9;