changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of daily records returned",
+ "type": "integer"
+ },
+ "days": {
+ "description": "Daily weather observations",
+ "items": {
+ "properties": {
+ "date": {
+ "description": "Date in YYYY-MM-DD format",
+ "type": "string"
+ },
+ "precip_mm": {
+ "description": "Precipitation in millimeters",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "pressure_hpa": {
+ "description": "Atmospheric pressure in hectopascals",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "snow_mm": {
+ "description": "Snow depth in millimeters",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "sunshine_min": {
+ "description": "Sunshine duration in minutes",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "tavg_c": {
+ "description": "Average temperature in Celsius",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "tmax_c": {
+ "description": "Maximum temperature in Celsius",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "tmin_c": {
+ "description": "Minimum temperature in Celsius",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "wind_dir_deg": {
+ "description": "Wind direction in degrees",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "wind_peak_kmh": {
+ "description": "Peak wind gust in km/h",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "wind_speed_kmh": {
+ "description": "Average wind speed in km/h",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "date"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "end_date": {
+ "description": "End date in YYYY-MM-DD format",
+ "type": "string"
+ },
+ "start_date": {
+ "description": "Start date in YYYY-MM-DD format",
+ "type": "string"
+ },
+ "station_id": {
+ "description": "Meteostat numeric station ID",
+ "type": "string"
+ }
+ },
+ "required": [
+ "station_id",
+ "start_date",
+ "end_date",
+ "count",
+ "days"
+ ],
+ "type": "object"
+}