First of all, thanks for creating and maintaining this API – it’s been a huge help!
While using the OpenAPI definition to generate a C# client, I noticed a data type mismatch:
The property Measurement.wind_force_avg_10min is defined as integer in the OAS schema, but the actual API response returns a decimal value (e.g., 3.8), which causes deserialization errors.
Example request:
https://tecdottir.metaodi.ch/measurements/mythenquai?startDate=2025-04-13&endDate=2025-04-14&sort=timestamp_cet%20desc&limit=500&offset=0
Suggested fix:
In the OpenAPI schema, change the type from:
to:
type: number
format: float
Let me know if I can help test or clarify anything!


First of all, thanks for creating and maintaining this API – it’s been a huge help!
While using the OpenAPI definition to generate a C# client, I noticed a data type mismatch:
The property
Measurement.wind_force_avg_10minis defined as integer in the OAS schema, but the actual API response returns a decimal value (e.g.,3.8), which causes deserialization errors.Example request:
Suggested fix:
In the OpenAPI schema, change the type from:
to:
Let me know if I can help test or clarify anything!