changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "conditions": {
+ "description": "Current weather conditions",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "dewpoint_c": {
+ "description": "Dewpoint in Celsius",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "heat_index_c": {
+ "description": "Heat index in Celsius",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "humidity_pct": {
+ "description": "Relative humidity percentage",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "pressure_pa": {
+ "description": "Barometric pressure in Pa",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "sea_level_pressure_pa": {
+ "description": "Sea level pressure in Pa",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "station_id": {
+ "description": "4-char station ID (ICAO)",
+ "type": "string"
+ },
+ "temperature_c": {
+ "description": "Temperature in Celsius",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "temperature_f": {
+ "description": "Temperature in Fahrenheit",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "timestamp": {
+ "description": "Observation time ISO 8601",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "visibility_m": {
+ "description": "Visibility in meters",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "wind_chill_c": {
+ "description": "Wind chill in Celsius",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "wind_direction_deg": {
+ "description": "Wind direction in degrees",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "wind_gust_mph": {
+ "description": "Wind gust in mph",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "wind_speed_mph": {
+ "description": "Wind speed in mph",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "station_id"
+ ],
+ "type": "object"
+}