changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "days": {
+ "description": "Array of daily temperature projections from multiple models",
+ "items": {
+ "properties": {
+ "date": {
+ "description": "Date in YYYY-MM-DD format",
+ "type": "string"
+ },
+ "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"
+ },
+ "models": {
+ "description": "List of climate models compared",
+ "enum": [
+ [
+ "EC_Earth3P_HR",
+ "MPI_ESM1_2_XR",
+ "FGOALS_f3_H"
+ ]
+ ],
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "timezone": {
+ "description": "Timezone identifier for the location",
+ "type": "string"
+ },
+ "units": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Units for each daily variable",
+ "type": "object"
+ }
+ },
+ "required": [
+ "latitude",
+ "longitude",
+ "timezone",
+ "units",
+ "days",
+ "models"
+ ],
+ "type": "object"
+}