|
| 1 | +--- |
| 2 | +section: dataStreams |
| 3 | +date: Last Modified |
| 4 | +title: "Backed xStock Report Schema (v10)" |
| 5 | +metadata: |
| 6 | + title: "Backed xStock Report Schema (v10) | Chainlink Data Streams" |
| 7 | + description: "Learn about Chainlink Backed xStock report schema (v10), including fields, encoding, and examples for integrating tokenized asset data in your applications." |
| 8 | + keywords: ["Report Schema", "Tokenized Assets", "Backed xStock", "v10 Schema", "Data Format", "Report Structure"] |
| 9 | +--- |
| 10 | + |
| 11 | +import DataStreams from "@features/data-streams/common/DataStreams.astro" |
| 12 | +import { PageTabs } from "@components" |
| 13 | + |
| 14 | +<DataStreams section="dsNotes" /> |
| 15 | + |
| 16 | +<PageTabs |
| 17 | + pages={[ |
| 18 | + |
| 19 | + { |
| 20 | + name: "Cryptocurrency Report Schema (v3)", |
| 21 | + url: "/data-streams/reference/report-schema-v3", |
| 22 | + }, |
| 23 | + { |
| 24 | + name: "DEX State Price Report Schema (v3)", |
| 25 | + url: "/data-streams/reference/report-schema-v3-dex", |
| 26 | + }, |
| 27 | + { |
| 28 | + name: "RWA Report Schema (v8)", |
| 29 | + url: "/data-streams/reference/report-schema-v8", |
| 30 | + }, |
| 31 | + { |
| 32 | + name: "NAV Report Schema (v9)", |
| 33 | + url: "/data-streams/reference/report-schema-v9", |
| 34 | + }, |
| 35 | + { |
| 36 | + name: "Backed xStock Report Schema (v10)", |
| 37 | + url: "/data-streams/reference/report-schema-v10", |
| 38 | + }, |
| 39 | + |
| 40 | +]} |
| 41 | +headerTitle="Available Report Schemas" |
| 42 | +headerDescription="Choose the schema version you want to explore." |
| 43 | +/> |
| 44 | + |
| 45 | +Chainlink Backed xStock Data Streams adhere to the report schema outlined below. |
| 46 | + |
| 47 | +### Schema Fields |
| 48 | + |
| 49 | +| Field | Type | Description | |
| 50 | +| ----------------------- | --------- | -------------------------------------------------------------------------------------------------------------------- | |
| 51 | +| `feedId` | `bytes32` | Unique identifier for the Data Streams feed | |
| 52 | +| `validFromTimestamp` | `uint32` | Earliest timestamp when the price is valid | |
| 53 | +| `observationsTimestamp` | `uint32` | Latest timestamp when the price is valid | |
| 54 | +| `nativeFee` | `uint192` | Cost to verify report onchain (native token) | |
| 55 | +| `linkFee` | `uint192` | Cost to verify report onchain (LINK) | |
| 56 | +| `expiresAt` | `uint32` | Expiration date of the report | |
| 57 | +| `lastUpdateTimestamp` | `uint64` | Timestamp of the last valid price update | |
| 58 | +| `price` | `int192` | Last traded price from the real-world equity market | |
| 59 | +| `marketStatus` | `uint32` | Status of the real-world equity market. <br/> Possible values: `0` (Unknown), `1` (Closed), `2` (Open), `3` (Halted) | |
| 60 | +| `currentMultiplier` | `int192` | Currently applied multiplier accounting for past corporate actions | |
| 61 | +| `newMultiplier` | `int192` | Multiplier to be applied at the activationDateTime <br/> (set to `0` if none is scheduled) | |
| 62 | +| `activationDateTime` | `uint32` | When the next corporate action takes effect <br/> (set to `0` if none is scheduled) | |
| 63 | +| `tokenizedPrice` | `int192` | 24/7 tokenized equity price as traded on supported exchanges <br/> (In development; currently returns `0`). | |
| 64 | + |
| 65 | +**Notes:** |
| 66 | + |
| 67 | +- `price` updates in real time during market open, but may become stale during market closed periods. |
| 68 | +- `tokenizedPrice` will be available in an upcoming release of Backed xStock Data Streams. Currently, it will always return `0`. |
| 69 | +- `currentMultiplier` reflects all past corporate actions and is updated only when a new action is activated. |
| 70 | +- `activationDateTime` and `newMultiplier` provide advance notice of upcoming corporate actions, allowing protocols to prepare. |
0 commit comments