Skip to content

Commit 846c7e2

Browse files
committed
updates
1 parent 069ed49 commit 846c7e2

File tree

4 files changed

+232
-60
lines changed

4 files changed

+232
-60
lines changed
-76.6 KB
Loading

src/content/data-streams/reference/report-schema-v11.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Chainlink Data Streams that use the RWA Advanced (v11) schema adhere to the stru
3939
| `linkFee` | `uint192` | Cost to verify report onchain (LINK) |
4040
| `expiresAt` | `uint32` | Expiration date of the report (seconds) |
4141
| `mid` | `int192` | Liquidity-weighted mid price |
42-
| `lastSeenTimestampNs` | `uint64` | Staleness indicator based on mid price (nanoseconds) |
42+
| `lastSeenTimestampNs` | `uint64` | Timestamp for **mid price only** (nanoseconds). See [Notes](#notes) below. |
4343
| `bid` | `int192` | Median bid price |
4444
| `bidVolume` | `int192` | Volume at bid price |
4545
| `ask` | `int192` | Median ask price |
@@ -64,7 +64,8 @@ Users should implement appropriate safeguards based on market status, such as pa
6464

6565
### Notes
6666

67+
- **IMPORTANT**: `lastSeenTimestampNs` is the timestamp for the `mid` price field **only**. Do not assume this timestamp applies to `bid`, `ask`, `bidVolume`, `askVolume`, or `lastTradedPrice`. These fields may have different update times depending on data provider behavior and caching mechanisms.
68+
- `lastSeenTimestampNs` helps applications detect stale data for the mid price, especially important during market transitions and holidays.
6769
- Future streams using this format may adopt different report schemas as needed.
68-
- `lastSeenTimestampNs` helps applications detect stale data, especially important during market transitions and holidays.
6970
- Market status cannot detect public holidays. See [Market Hours](/data-streams/market-hours) for major holiday periods.
7071
- Data availability and sourcing vary by session. Liquidity is typically highest during regular hours and lower during extended and overnight sessions.

0 commit comments

Comments
 (0)