addedInput schema / properties / include_active_alerts
Added value: +{
+ "default": false,
+ "description": "Include up to 10 currently active NWS alerts whose affected area contains the requested point",
+ "title": "Include Active Alerts",
+ "type": "boolean"
+}
addedInput schema / properties / include_current_conditions
Added value: +{
+ "default": false,
+ "description": "Include the latest observation from the nearest available NWS station; kept opt-in to preserve baseline latency",
+ "title": "Include Current Conditions",
+ "type": "boolean"
+}
addedOutput schema / properties / data / properties / activeAlerts
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "alertCount": {
+ "maximum": 10,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "alerts": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "certainty": {
+ "maxLength": 50,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "effective": {
+ "format": "date-time",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ends": {
+ "format": "date-time",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "event": {
+ "maxLength": 200,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "expires": {
+ "format": "date-time",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "headline": {
+ "maxLength": 500,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "maxLength": 300,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "onset": {
+ "format": "date-time",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "severity": {
+ "maxLength": 50,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "sourceUrl": {
+ "format": "uri",
+ "maxLength": 500,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "urgency": {
+ "maxLength": 50,
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "event",
+ "headline",
+ "severity",
+ "certainty",
+ "urgency",
+ "effective",
+ "onset",
+ "expires",
+ "ends",
+ "sourceUrl"
+ ],
+ "type": "object"
+ },
+ "maxItems": 10,
+ "type": "array"
+ },
+ "alertsTruncated": {
+ "type": "boolean"
+ },
+ "available": {
+ "type": "boolean"
+ },
+ "requested": {
+ "type": "boolean"
+ },
+ "sourceUrl": {
+ "format": "uri",
+ "maxLength": 500,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "updatedAt": {
+ "format": "date-time",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "warning": {
+ "maxLength": 500,
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "requested",
+ "available",
+ "updatedAt",
+ "alertCount",
+ "alertsTruncated",
+ "alerts",
+ "sourceUrl",
+ "warning"
+ ],
+ "type": "object"
+}
addedOutput schema / properties / data / properties / currentConditions
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "available": {
+ "type": "boolean"
+ },
+ "description": {
+ "maxLength": 300,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "dewpoint": {
+ "additionalProperties": false,
+ "properties": {
+ "unitCode": {
+ "maxLength": 100,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "value",
+ "unitCode"
+ ],
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "heatIndex": {
+ "additionalProperties": false,
+ "properties": {
+ "unitCode": {
+ "maxLength": 100,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "value",
+ "unitCode"
+ ],
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "observedAt": {
+ "format": "date-time",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "relativeHumidityPercent": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "requested": {
+ "type": "boolean"
+ },
+ "sourceUrl": {
+ "format": "uri",
+ "maxLength": 500,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "stationId": {
+ "pattern": "^[A-Z0-9]{3,10}$",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "stationName": {
+ "maxLength": 200,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "temperature": {
+ "additionalProperties": false,
+ "properties": {
+ "unitCode": {
+ "maxLength": 100,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "value",
+ "unitCode"
+ ],
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "visibility": {
+ "additionalProperties": false,
+ "properties": {
+ "unitCode": {
+ "maxLength": 100,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "value",
+ "unitCode"
+ ],
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "warning": {
+ "maxLength": 500,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "windChill": {
+ "additionalProperties": false,
+ "properties": {
+ "unitCode": {
+ "maxLength": 100,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "value",
+ "unitCode"
+ ],
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "windDirection": {
+ "additionalProperties": false,
+ "properties": {
+ "unitCode": {
+ "maxLength": 100,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "value",
+ "unitCode"
+ ],
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "windGust": {
+ "additionalProperties": false,
+ "properties": {
+ "unitCode": {
+ "maxLength": 100,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "value",
+ "unitCode"
+ ],
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "windSpeed": {
+ "additionalProperties": false,
+ "properties": {
+ "unitCode": {
+ "maxLength": 100,
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "value",
+ "unitCode"
+ ],
+ "type": [
+ "object",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "requested",
+ "available",
+ "stationId",
+ "stationName",
+ "observedAt",
+ "description",
+ "temperature",
+ "dewpoint",
+ "relativeHumidityPercent",
+ "heatIndex",
+ "windChill",
+ "windDirection",
+ "windSpeed",
+ "windGust",
+ "visibility",
+ "sourceUrl",
+ "warning"
+ ],
+ "type": "object"
+}
changedOutput schema / properties / data / properties / source / properties / dataset / const
Previous value: -"NWS API forecast"New value: +"NWS API forecast with optional observations and active alerts"
changedOutput schema / properties / data / required
Previous value: -[
- "location",
- "forecastType",
- "units",
- "generatedAt",
- "updatedAt",
- "periodCount",
- "periodsTruncated",
- "periods",
- "source",
- "retrievedAt",
- "limitations"
-]New value: +[
+ "location",
+ "forecastType",
+ "units",
+ "generatedAt",
+ "updatedAt",
+ "periodCount",
+ "periodsTruncated",
+ "periods",
+ "currentConditions",
+ "activeAlerts",
+ "source",
+ "retrievedAt",
+ "limitations"
+]