changedInput schema / properties / active_only / description
Previous value: -"When true (default), return only Warnings, Watches, and Alerts; exclude Summaries and Other. Set false to return all products."New value: +"When true (default), return only in-force Warnings, Watches, and Alerts; exclude Summaries, Other, expired products, and cancellation notices. Set false to return all products, including cancellations (flagged by the cancelled field)."
addedOutput schema / properties / alerts / items / properties / cancelled
Added value: +{
+ "description": "True when this record cancels a previously issued product (\"CANCEL WARNING:\"/\"CANCEL ALERT:\" headline) rather than being in force. Always false when active_only=true, which excludes cancellations; set active_only=false to see them.",
+ "type": "boolean"
+}
changedOutput schema / properties / alerts / items / properties / level / description
Previous value: -"Numeric severity level from the product code (0 when not applicable)."New value: +"NOAA scale level 0–5, read from the scale stated in the message body. 0 means the product states no NOAA scale (e.g. a K4 warning, below the G-scale; or a radio-burst alert, outside the scales) — not a severity of zero. See noaaScale for the scale letter."
addedOutput schema / properties / alerts / items / properties / noaaScale
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "NOAA scale stated in the message body, e.g. \"G1\", \"R2\", \"S1\"; null when the product states none."
+}
changedOutput schema / properties / alerts / items / properties / phenomenon / description
Previous value: -"Short phenomenon name, e.g. \"Geomagnetic\", \"Radio Blackout\", \"Solar Radiation\"."New value: +"Short phenomenon name derived from the body's NOAA scale letter, e.g. \"Geomagnetic\", \"Radio Blackout\", \"Solar Radiation\"."
changedOutput schema / properties / alerts / items / required
Previous value: -[
- "productId",
- "messageCode",
- "productType",
- "level",
- "phenomenon",
- "issueDatetime",
- "validFrom",
- "validTo",
- "message"
-]New value: +[
+ "productId",
+ "messageCode",
+ "productType",
+ "level",
+ "noaaScale",
+ "cancelled",
+ "phenomenon",
+ "issueDatetime",
+ "validFrom",
+ "validTo",
+ "message"
+]