changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "days": {
+ "description": "Array of daily climate projections",
+ "items": {
+ "properties": {
+ "date": {
+ "description": "Date in YYYY-MM-DD format",
+ "type": "string"
+ },
+ "precipitation_sum": {
+ "description": "Total precipitation in mm",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "temperature_2m_mean": {
+ "description": "Mean temperature in °C",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "date"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "latitude": {
+ "description": "Latitude of the location in decimal degrees",
+ "type": "number"
+ },
+ "longitude": {
+ "description": "Longitude of the location in decimal degrees",
+ "type": "number"
+ },
+ "timezone": {
+ "description": "Timezone identifier for the location",
+ "type": "string"
+ },
+ "units": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Units for each daily variable (e.g., °C, mm)",
+ "type": "object"
+ }
+ },
+ "required": [
+ "latitude",
+ "longitude",
+ "timezone",
+ "units",
+ "days"
+ ],
+ "type": "object"
+}