-
fastjson
Fast JSON parser and validator for Go. No custom structs, no code generation, no reflection (by valyala)
In Go if I need to extract just a few fields from a large JSON document it's hard to beat https://github.com/valyala/fastjson
-
InfluxDB
InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
-
The service you're using has a swagger so you should try to create proper models in the first place. There are go code generators such as oapi-codegen. This style of programming is only good for throw-away code, python works well for that, if it's all you need, well, maybe stick to python in the first place. Yet even in python it's not considered production-ready good practice, proper code should use type-safe bindings such as with pydantic
-
-
Swagger is mentioned; see also the very useful and often used https://mholt.github.io/json-to-go/ .