addedInput schema / examples
Added value: +[
+ {
+ "end_date": "2023-12-31",
+ "latitude": 48.8566,
+ "longitude": 2.3522,
+ "start_date": "2023-01-01"
+ },
+ {
+ "daily": "temperature_2m_max,precipitation_sum",
+ "end_date": "2020-08-31",
+ "latitude": 35.6762,
+ "longitude": 139.6503,
+ "start_date": "2020-06-01"
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "daily": {
+ "additionalProperties": {
+ "items": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "type": "array"
+ },
+ "description": "Daily historical data",
+ "properties": {
+ "time": {
+ "description": "ISO 8601 date strings",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "daily_units": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Units for daily variables",
+ "type": "object"
+ },
+ "elevation": {
+ "description": "Elevation of the location in meters",
+ "type": "number"
+ },
+ "generationtime_ms": {
+ "description": "API response generation time in milliseconds",
+ "type": "number"
+ },
+ "hourly": {
+ "additionalProperties": {
+ "items": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "type": "array"
+ },
+ "description": "Hourly historical data",
+ "properties": {
+ "time": {
+ "description": "ISO 8601 timestamps",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "hourly_units": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Units for hourly variables",
+ "type": "object"
+ },
+ "latitude": {
+ "description": "Query latitude",
+ "type": "number"
+ },
+ "longitude": {
+ "description": "Query longitude",
+ "type": "number"
+ },
+ "timezone": {
+ "description": "IANA timezone string",
+ "type": "string"
+ },
+ "utc_offset_seconds": {
+ "description": "UTC offset in seconds for the requested timezone",
+ "type": "integer"
+ }
+ },
+ "type": "object"
+}