RWA disclosure comparison: worked examples
RWA Notes compares two sets of supplied asset disclosure fields while retaining units, dates and source references. It flags missing values and incompatible comparisons. It does not verify reserves, issuer solvency or redemption rights.
Three fictional scenarios, calculated by the same engine as the tool. They illustrate behavior and failure cases, not customer outcomes or measured provider performance.
A field disappears
Keep an absent redemption field visible in the change log.
- Fields reviewed
- 2
- Changed / missing
- 2
- Freshness / date flags
- 0
| Asset / field | Before | After | Unit before / after | Numeric delta | Review |
|---|---|---|---|---|---|
| Fictional fund / reported_assets | 1000000 | 1050000 | USD / USD | 50000 | Value or unit changed |
| Fictional fund / redemption_notice | 2 | Missing | business-days / — | Not comparable | Missing in new disclosure; Value or unit changed |
Run this scenario Input JSON Calculated report
Inspect every input
{
"asOf": "2026-09-19",
"maxAgeDays": 30,
"before": [
{
"asset": "Fictional fund",
"field": "reported_assets",
"value": "1000000",
"unit": "USD",
"date": "2026-08-31",
"source": "https://example.org/aug-report"
},
{
"asset": "Fictional fund",
"field": "redemption_notice",
"value": "2",
"unit": "business-days",
"date": "2026-08-31",
"source": "https://example.org/aug-report"
}
],
"after": [
{
"asset": "Fictional fund",
"field": "reported_assets",
"value": "1050000",
"unit": "USD",
"date": "2026-09-18",
"source": "https://example.org/sep-report"
}
]
}The currency changes
A unit change blocks a misleading numeric growth figure.
- Fields reviewed
- 2
- Changed / missing
- 2
- Freshness / date flags
- 0
| Asset / field | Before | After | Unit before / after | Numeric delta | Review |
|---|---|---|---|---|---|
| Fictional fund / reported_assets | 1000000 | 1050000 | USD / EUR | Not comparable | Unit changed; Value or unit changed |
| Fictional fund / redemption_notice | 2 | Missing | business-days / — | Not comparable | Missing in new disclosure; Value or unit changed |
Run this scenario Input JSON Calculated report
Inspect every input
{
"asOf": "2026-09-19",
"maxAgeDays": 30,
"before": [
{
"asset": "Fictional fund",
"field": "reported_assets",
"value": "1000000",
"unit": "USD",
"date": "2026-08-31",
"source": "https://example.org/aug-report"
},
{
"asset": "Fictional fund",
"field": "redemption_notice",
"value": "2",
"unit": "business-days",
"date": "2026-08-31",
"source": "https://example.org/aug-report"
}
],
"after": [
{
"asset": "Fictional fund",
"field": "reported_assets",
"value": "1050000",
"unit": "EUR",
"date": "2026-09-18",
"source": "https://example.org/sep-report"
}
]
}The new disclosure is stale
A newer-looking number may still fail the review-date check.
- Fields reviewed
- 2
- Changed / missing
- 2
- Freshness / date flags
- 1
| Asset / field | Before | After | Unit before / after | Numeric delta | Review |
|---|---|---|---|---|---|
| Fictional fund / reported_assets | 1000000 | 1050000 | USD / USD | Not comparable | Stale new disclosure; Value or unit changed |
| Fictional fund / redemption_notice | 2 | Missing | business-days / — | Not comparable | Missing in new disclosure; Value or unit changed |
Run this scenario Input JSON Calculated report
Inspect every input
{
"asOf": "2026-11-01",
"maxAgeDays": 30,
"before": [
{
"asset": "Fictional fund",
"field": "reported_assets",
"value": "1000000",
"unit": "USD",
"date": "2026-08-31",
"source": "https://example.org/aug-report"
},
{
"asset": "Fictional fund",
"field": "redemption_notice",
"value": "2",
"unit": "business-days",
"date": "2026-08-31",
"source": "https://example.org/aug-report"
}
],
"after": [
{
"asset": "Fictional fund",
"field": "reported_assets",
"value": "1050000",
"unit": "USD",
"date": "2026-09-18",
"source": "https://example.org/sep-report"
}
]
}A mistake worth catching
A missing redemption field is not a zero-day redemption promise. Preserve the missing state and inspect the original source.
Use the method with your records
Match asset + field. Show old and new values, dates and source references. Calculate a numeric delta only when units and date checks permit it.
No live asset feed, reserve audit, redemption verification, credit rating or investment recommendation.
Read the complete method, sources and input contract. Updated 2026-09-19; by the AGI Scorecard team.