changedOutput schema / properties / btMaxInWindow / description
Previous value: -"Highest total field magnitude Bt in nT across the whole window, computed before any reduction. Null when the window is empty or every bt in it is null."New value: +"Peak Bt in nT across the whole window; null when it has no Bt."
changedOutput schema / properties / bzMinInWindow / description
Previous value: -"Lowest (most southward) Bz reading in nT across the whole window, computed before any reduction — the number storm work reads next to the latest value. Null when the window is empty or every bzGsm in it is null."New value: +"Most southward Bz in nT across the whole window; null when it has no Bz."
changedOutput schema / properties / bzMinTimeTag / description
Previous value: -"ISO 8601 time tag of the record that carried bzMinInWindow. Null whenever bzMinInWindow is null."New value: +"ISO 8601 time of bzMinInWindow; null when it is null."
changedOutput schema / properties / bzSouthMinutesInWindow / description
Previous value: -"Minutes of southward Bz in the window: the count of 1-minute mag records with bzGsm below 0, across the whole window before any reduction. Gaps in the feed are not counted, so it can fall short of the wall-clock time Bz spent southward. 0 on an empty window, an all-null window, or one with no southward Bz."New value: +"Minutes of Bz < 0: 1-minute mag records across the whole window. Feed gaps are not counted. 0 when none."
changedOutput schema / properties / bzStatus / description
Previous value: -"Plain-language Bz status, e.g. \"Southward Bz −14 nT — storm-driving conditions\" or \"Northward Bz +5 nT — quiescent\"."New value: +"Bz status from latestMag, e.g. \"Southward Bz -14 nT — storm-driving conditions.\"; \"Bz data unavailable.\" without a reading."
changedOutput schema / properties / densityMaxInWindow / description
Previous value: -"Highest proton density in particles/cm³ across the whole window, computed before any reduction. Null when the window is empty or every densityPerCm3 in it is null."New value: +"Peak proton density in particles/cm³ across the whole window; null when none."
changedOutput schema / properties / feedStalenessHours / description
Previous value: -"Hours between now and the newest record across both feeds — how far behind real time the upstream data is. Null when both feeds returned no active-spacecraft records."New value: +"Hours from the newest record in either feed to now; null when both are empty."
changedOutput schema / properties / latestFeedMagTime / description
Previous value: -"ISO 8601 time of the newest magnetic field record the feed carries, ignoring the window. Null when the feed returned no active-spacecraft mag records."New value: +"ISO 8601 time of the newest mag record in the feed, window aside; null when none."
changedOutput schema / properties / latestFeedPlasmaTime / description
Previous value: -"ISO 8601 time of the newest plasma record the feed carries, ignoring the window. Null when the feed returned no active-spacecraft plasma records. Compare against the window to tell a quiet feed from a stale one."New value: +"ISO 8601 time of the newest plasma record in the feed, window aside; null when none."
changedOutput schema / properties / latestMag / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "description": "One magnetic field measurement from the active L1 spacecraft.",
- "properties": {
- "bt": {
- "description": "Total field magnitude Bt (nT). Null when the feed omits the value.",
- "type": [
- "number",
- "null"
- ]
- },
- "bxGsm": {
- "description": "Bx component in GSM coordinates (nT). Null when the feed omits the value.",
- "type": [
- "number",
- "null"
- ]
- },
- "byGsm": {
- "description": "By component in GSM coordinates (nT). Null when the feed omits the value.",
- "type": [
- "number",
- "null"
- ]
- },
- "bzGsm": {
- "description": "Bz component in GSM coordinates (nT). Southward (negative) drives geomagnetic storms. Null when the feed omits the value.",
- "type": [
- "number",
- "null"
- ]
- },
- "source": {
- "description": "Spacecraft that reported this measurement, as named by the feed, e.g. \"SOLAR1\".",
- "type": "string"
- },
- "timeTag": {
- "description": "ISO 8601 measurement time tag.",
- "type": "string"
- }
- },
- "required": [
- "timeTag",
- "source",
- "bxGsm",
- "byGsm",
- "bzGsm",
- "bt"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "description": "One L1 magnetic field record.",
+ "properties": {
+ "bt": {
+ "description": "Total field Bt in nT; null when missing.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "bxGsm": {
+ "description": "Bx, GSM, in nT; null when missing.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "byGsm": {
+ "description": "By, GSM, in nT; null when missing.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "bzGsm": {
+ "description": "Bz, GSM, in nT; negative (southward) drives storms; null when missing.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "source": {
+ "description": "Reporting spacecraft, e.g. \"SOLAR1\".",
+ "type": "string"
+ },
+ "timeTag": {
+ "description": "ISO 8601 measurement time.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "timeTag",
+ "source",
+ "bxGsm",
+ "byGsm",
+ "bzGsm",
+ "bt"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / latestMag / description
Previous value: -"Most recent magnetic field reading, null if no data in window."New value: +"Newest mag record in the window; null when the window has none."
changedOutput schema / properties / latestPlasma / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "description": "One plasma measurement from the active L1 spacecraft.",
- "properties": {
- "densityPerCm3": {
- "description": "Proton density in particles/cm³. Null when the feed omits the value.",
- "type": [
- "number",
- "null"
- ]
- },
- "source": {
- "description": "Spacecraft that reported this measurement, as named by the feed, e.g. \"SOLAR1\".",
- "type": "string"
- },
- "speedKmS": {
- "description": "Solar wind speed in km/s. Null when the feed omits the value.",
- "type": [
- "number",
- "null"
- ]
- },
- "temperatureK": {
- "description": "Proton temperature in Kelvin. Null when the feed omits the value.",
- "type": [
- "number",
- "null"
- ]
- },
- "timeTag": {
- "description": "ISO 8601 measurement time tag.",
- "type": "string"
- }
- },
- "required": [
- "timeTag",
- "source",
- "densityPerCm3",
- "speedKmS",
- "temperatureK"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "description": "One L1 plasma record.",
+ "properties": {
+ "densityPerCm3": {
+ "description": "Proton density in particles/cm³; null when missing.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "source": {
+ "description": "Reporting spacecraft, e.g. \"SOLAR1\".",
+ "type": "string"
+ },
+ "speedKmS": {
+ "description": "Solar wind speed in km/s; null when missing.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "temperatureK": {
+ "description": "Proton temperature in K; null when missing.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "timeTag": {
+ "description": "ISO 8601 measurement time.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "timeTag",
+ "source",
+ "densityPerCm3",
+ "speedKmS",
+ "temperatureK"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / latestPlasma / description
Previous value: -"Most recent plasma reading, null if no data in window."New value: +"Newest plasma record in the window; null when the window has none."
changedOutput schema / properties / mag / description
Previous value: -"Magnetic field measurements (Bx, By, Bz, Bt) within the window, oldest first. Under resolution=\"reduced\" this is at most 200 real records — one per equal-size bucket of the window, each the bucket's most southward Bz — with the newest windowed record last, so the final element always equals latestMag. Empty under resolution=\"summary\"."New value: +"Mag records in the window, oldest first. \"reduced\": at most 200, each its bucket's most southward Bz; the last equals latestMag. Empty under \"summary\"."
changedOutput schema / properties / mag / items / description
Previous value: -"One magnetic field measurement from the active L1 spacecraft."New value: +"One L1 magnetic field record."
changedOutput schema / properties / mag / items / properties / bt / description
Previous value: -"Total field magnitude Bt (nT). Null when the feed omits the value."New value: +"Total field Bt in nT; null when missing."
changedOutput schema / properties / mag / items / properties / bxGsm / description
Previous value: -"Bx component in GSM coordinates (nT). Null when the feed omits the value."New value: +"Bx, GSM, in nT; null when missing."
changedOutput schema / properties / mag / items / properties / byGsm / description
Previous value: -"By component in GSM coordinates (nT). Null when the feed omits the value."New value: +"By, GSM, in nT; null when missing."
changedOutput schema / properties / mag / items / properties / bzGsm / description
Previous value: -"Bz component in GSM coordinates (nT). Southward (negative) drives geomagnetic storms. Null when the feed omits the value."New value: +"Bz, GSM, in nT; negative (southward) drives storms; null when missing."
changedOutput schema / properties / mag / items / properties / source / description
Previous value: -"Spacecraft that reported this measurement, as named by the feed, e.g. \"SOLAR1\"."New value: +"Reporting spacecraft, e.g. \"SOLAR1\"."
changedOutput schema / properties / mag / items / properties / timeTag / description
Previous value: -"ISO 8601 measurement time tag."New value: +"ISO 8601 measurement time."
changedOutput schema / properties / magBucketRecords / description
Previous value: -"Magnetic field records per emitted record — the bucket size the window was reduced by, or 1 when this series was returned untouched. The two series differ in length, so each carries its own factor. Present only when a reduction was applied to either series."New value: +"Mag records per emitted record, 1 if untouched. Present only after a reduction."
changedOutput schema / properties / magCount / description
Previous value: -"Number of magnetic field records in the mag array. Equal to the records in the window at full resolution; under a reduction it is the emitted count, and magWindowRecords carries the pre-reduction total. Under resolution=\"summary\" the array is empty and this is the records the window held."New value: +"Records in mag (magWindowRecords has the pre-reduction total); under \"summary\", the records the window held."
changedOutput schema / properties / magWindowRecords / description
Previous value: -"Magnetic field records the window held before reduction. Present only when a reduction was applied to either series, or under resolution=\"summary\"."New value: +"Mag records in the window before reduction. Present after a reduction or under \"summary\"."
changedOutput schema / properties / notice / description
Previous value: -"Guidance on what shaped this response: that the requested window returned no plasma or magnetic field records — naming the newest record the feed carries, or reporting that the feed itself returned nothing from an active spacecraft — that a series was bounded to 200 records, with the per-series factors, or that resolution=\"summary\" omitted both series."New value: +"What shaped the response: an empty window (with the newest feed record), series bounded to 200 records, or series omitted under \"summary\"."
changedOutput schema / properties / plasma / description
Previous value: -"Plasma measurements (speed, density, temperature) within the window, oldest first. Under resolution=\"reduced\" this is at most 200 real records — one per equal-size bucket of the window, each the bucket's fastest speed — with the newest windowed record last. Empty under resolution=\"summary\"."New value: +"Plasma records in the window, oldest first. \"reduced\": at most 200, each its bucket's fastest speed, newest last. Empty under \"summary\"."
changedOutput schema / properties / plasma / items / description
Previous value: -"One plasma measurement from the active L1 spacecraft."New value: +"One L1 plasma record."
changedOutput schema / properties / plasma / items / properties / densityPerCm3 / description
Previous value: -"Proton density in particles/cm³. Null when the feed omits the value."New value: +"Proton density in particles/cm³; null when missing."
changedOutput schema / properties / plasma / items / properties / source / description
Previous value: -"Spacecraft that reported this measurement, as named by the feed, e.g. \"SOLAR1\"."New value: +"Reporting spacecraft, e.g. \"SOLAR1\"."
changedOutput schema / properties / plasma / items / properties / speedKmS / description
Previous value: -"Solar wind speed in km/s. Null when the feed omits the value."New value: +"Solar wind speed in km/s; null when missing."
changedOutput schema / properties / plasma / items / properties / temperatureK / description
Previous value: -"Proton temperature in Kelvin. Null when the feed omits the value."New value: +"Proton temperature in K; null when missing."
changedOutput schema / properties / plasma / items / properties / timeTag / description
Previous value: -"ISO 8601 measurement time tag."New value: +"ISO 8601 measurement time."
changedOutput schema / properties / plasmaBucketRecords / description
Previous value: -"Plasma records per emitted record — the bucket size the window was reduced by, or 1 when this series was returned untouched. Records rather than a minute cadence: the feed skips minutes, so a bucket spans a variable stretch of wall-clock time. Present only when a reduction was applied to either series."New value: +"Plasma records per emitted record, 1 if untouched. Present only after a reduction."
changedOutput schema / properties / plasmaCount / description
Previous value: -"Number of plasma records in the plasma array. Equal to the records in the window at full resolution; under a reduction it is the emitted count, and plasmaWindowRecords carries the pre-reduction total. Under resolution=\"summary\" the array is empty and this is the records the window held."New value: +"Records in plasma (plasmaWindowRecords has the pre-reduction total); under \"summary\", the records the window held."
changedOutput schema / properties / plasmaWindowRecords / description
Previous value: -"Plasma records the window held before reduction. Present only when a reduction was applied to either series, or under resolution=\"summary\"."New value: +"Plasma records in the window before reduction. Present after a reduction or under \"summary\"."
changedOutput schema / properties / speedMaxInWindow / description
Previous value: -"Highest solar wind speed in km/s across the whole window, computed before any reduction. Null when the window is empty or every speedKmS in it is null."New value: +"Peak speed in km/s across the whole window; null when it has no speed."
changedOutput schema / properties / speedMaxTimeTag / description
Previous value: -"ISO 8601 time tag of the record that carried speedMaxInWindow. Null whenever speedMaxInWindow is null."New value: +"ISO 8601 time of speedMaxInWindow; null when it is null."