Copy-ready records you can paste, read, and act on
Below are ready-to-use SSMDE examples across domains. Each carries value (untouched fact), align (bounded dial), band (policy label), manifest_id (rulebook), and stamp (evidence).
Industrial cooling
{
"value": { "temperature_K": 296.42 },
"align": 0.87,
"band": "GREEN",
"manifest_id": "THERMAL_LINE_COOLING_PLANT_A_v7",
"stamp": "SSMCLOCK1|2025-11-04T14:05:22Z|theta=132.77|sha256=9fde1c...|prev=72af0b..."
}
Read it: value is the raw Kelvin reading; align = 0.87 ⇒ stable; "GREEN" per manifest cutpoints; the stamp proves time+content+order.
Finance collections
{
"value": { "cash_collected_usd": 18420.77 },
"align": -0.31,
"band": "A-",
"manifest_id": "AR_STABILITY_Q4_CLOSE_v2",
"stamp": "SSMCLOCK1|2025-11-04T14:06:41Z|theta=044.91|sha256=ab12d4...|prev=89c2aa..."
}
Read it: factual cash; align = -0.31 ⇒ jittery; "A-" prompts investigate per manifest.
AI routing / triage
{
"value": { "model_score": 0.912 },
"align": -0.75,
"band": "CRITICAL",
"manifest_id": "AI_ROUTING_TRIAGE_v3",
"stamp": "SSMCLOCK1|2025-11-04T14:06:59Z|theta=211.30|sha256=77c1b0...|prev=ab12d4..."
}
Read it: score looks high, but align = -0.75 signals instability; "CRITICAL" forces human-in-the-loop inside promised window.
Chemical process safety
{
"value": { "reactor_pressure_bar": 14.3 },
"align": -0.62,
"band": "A-",
"manifest_id": "CHEM_REACTOR_PSAFE_PLANT_B_v4",
"stamp": "SSMCLOCK1|2025-11-04T14:07:33Z|theta=509.02|sha256=2cf0e1...|prev=77c1b0..."
}
Read it: bounded dial shows growing stress; "A-" triggers investigation before escalation.
Structural monitoring
{
"value": { "load_ratio": 0.64, "vibration_rms": 0.037 },
"align": 0.15,
"band": "A0",
"manifest_id": "STRUCT_FATIGUE_BRIDGE_SPAN_12_v9",
"stamp": "SSMCLOCK1|2025-11-04T14:08:11Z|theta=091.44|sha256=5a4e9d...|prev=2cf0e1..."
}
Read it: near-normal; "A0" = monitor; policy windows are in the manifest.
Clinical telemetry
{
"value": { "heart_rr_interval_ms": 782 },
"align": -0.28,
"band": "A-",
"manifest_id": "CLINICAL_TELEM_WARD_C_STEPDOWN_v5",
"stamp": "SSMCLOCK1|2025-11-04T14:08:55Z|theta=403.77|sha256=1f9a33...|prev=5a4e9d..."
}
Read it: raw interval untouched; align shows mild instability; band prompts review per clinical manifest (not a diagnosis).
Network operations
{
"value": { "packet_loss_pct": 2.4, "latency_ms_p50": 41.2 },
"align": -0.52,
"band": "A-",
"manifest_id": "NET_QOS_CORE_REGION_EAST_v6",
"stamp": "SSMCLOCK1|2025-11-04T14:09:29Z|theta=711.09|sha256=6b0c72...|prev=1f9a33..."
}
Read it: QoS degrading; "A-" kicks investigation SLA; chain proves the alert was live then, not reconstructed later.
Mini validator (receiver)
Use this to sanity-check incoming examples offline.
# canonical subset for hashing
canonical(record):
{
"value": <as-emitted>,
"align": <number>,
"band": <string-or-null>,
"manifest_id": <string>
}
# verify
expect := sha256(bytes(canonical(record)))
assert parse(record.stamp,"sha256") == expect
Producer’s reminder (computing align)
a_c := clamp(a_raw, -1+eps_a, +1-eps_a)
u := atanh(a_c)
U += w * u
W += w
align := tanh( U / max(W, eps_w) )
Bounded, replayable, order-invariant. Always publish eps_a, eps_w, and the weight rule in the manifest.
Navigation
Previous: SSMDE – Field-by-field walkthrough (1.7)
Next: SSMDE – Why this is not just another data blob (1.9)
Directory of Pages
SSMDE – Table of Contents