action cloudrf_network { label: "Find the best server for somewhere" description: "Query your network to find the best server(s) for a given receiver/customer location. A previously generated network is required." provider: cloudrf method: GET path: "/network" encoding: json input: { type: "object" properties: { alt: { type: "integer" format: "int32" } lat: { type: "number" format: "float" } lon: { type: "number" format: "float" } nam: { type: "string" } net: { type: "string" } rxg: { type: "number" format: "float" } } required: ["alt", "lat", "lon", "nam", "net"] additionalProperties: false } output: { type: "object" additionalProperties: true } }