removedInput schema / properties / filename
Removed value: -{
- "title": "Filename",
- "type": "string"
-}
addedInput schema / properties / signal_id
Added value: +{
+ "title": "Signal Id",
+ "type": "string"
+}
changedInput schema / required
Previous value: -[
- "filename"
-]New value: +[
+ "signal_id"
+]
changedOutput schema / description
Previous value: -"Statistical analysis result of the signal."New value: +"Statistical analysis result of the signal.\n\nValues are in the signal's native unit. The unit is reported only when\nDECLARED (companion ``_metadata.json`` or ``load_signal(signal_unit=...)``)\n— it is never guessed from signal amplitude."
removedOutput schema / properties / detected_unit
Removed value: -{
- "description": "Auto-detected signal unit (g acceleration or mm/s velocity)",
- "title": "Detected Unit",
- "type": "string"
-}
addedOutput schema / properties / signal_unit
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Declared signal unit ('g', 'm/s2', 'mm/s', 'm/s') from companion metadata — never guessed from amplitude. None when not declared.",
+ "title": "Signal Unit"
+}
changedOutput schema / properties / unit_note / description
Previous value: -"Important note about signal units and conversion requirements"New value: +"Unit declaration status and how to declare the unit for ISO severity assessment"
changedOutput schema / required
Previous value: -[
- "rms",
- "peak_to_peak",
- "peak",
- "crest_factor",
- "kurtosis",
- "skewness",
- "mean",
- "std_dev",
- "detected_unit",
- "unit_note"
-]New value: +[
+ "rms",
+ "peak_to_peak",
+ "peak",
+ "crest_factor",
+ "kurtosis",
+ "skewness",
+ "mean",
+ "std_dev",
+ "unit_note"
+]