changedOutput schema / (root)
Previous value: -{
- "properties": {
- "location": {
- "properties": {
- "city": {
- "description": "City name of the location",
- "type": [
- "string",
- "null"
- ]
- },
- "lat": {
- "description": "Latitude of the location",
- "type": "number"
- },
- "lon": {
- "description": "Longitude of the location",
- "type": "number"
- },
- "state": {
- "description": "State of the location",
- "type": [
- "string",
- "null"
- ]
- }
- },
- "required": [
- "lat",
- "lon",
- "city",
- "state"
- ],
- "type": "object"
- },
- "periods": {
- "items": {
- "properties": {
- "detailed_forecast": {
- "description": "Detailed forecast description",
- "type": "string"
- },
- "end_time": {
- "description": "ISO 8601 end time of the period",
- "type": "string"
- },
- "is_daytime": {
- "description": "Whether the period is during daytime",
- "type": "boolean"
- },
- "name": {
- "description": "Period name (e.g., 'Tonight', 'Tuesday')",
- "type": "string"
- },
- "short_forecast": {
- "description": "Brief forecast description",
- "type": "string"
- },
- "start_time": {
- "description": "ISO 8601 start time of the period",
- "type": "string"
- },
- "temperature": {
- "description": "Temperature value",
- "type": "number"
- },
- "temperature_unit": {
- "description": "Temperature unit (F or C)",
- "type": "string"
- },
- "wind_direction": {
- "description": "Wind direction (e.g., 'N', 'SW')",
- "type": "string"
- },
- "wind_speed": {
- "description": "Wind speed description",
- "type": "string"
- }
- },
- "required": [
- "name",
- "start_time",
- "end_time",
- "is_daytime",
- "temperature",
- "temperature_unit",
- "wind_speed",
- "wind_direction",
- "short_forecast",
- "detailed_forecast"
- ],
- "type": "object"
- },
- "type": "array"
- }
- },
- "required": [
- "location",
- "periods"
- ],
- "type": "object"
-}New value: +null