@openvtc/trust-tasks 0.18.0 → 0.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +55 -0
- package/dist/_shared/components.d.ts +33 -1
- package/dist/_shared/components.d.ts.map +1 -1
- package/dist/rooms/_shared/0.1/room.d.ts +1 -1
- package/dist/rooms/_shared/0.1/room.d.ts.map +1 -1
- package/dist/rooms/records/get/0.1/payload.d.ts +237 -23
- package/dist/rooms/records/get/0.1/payload.d.ts.map +1 -1
- package/dist/rooms/records/get/0.1/payload.js +126 -10
- package/dist/rooms/records/get/0.1/payload.js.map +1 -1
- package/dist/rooms/records/list/0.1/payload.d.ts +4 -4
- package/dist/rooms/records/list/0.1/payload.js +2 -2
- package/dist/rooms/records/list/0.1/payload.js.map +1 -1
- package/package.json +1 -1
- package/src/_shared/components.ts +33 -1
- package/src/rooms/_shared/0.1/room.ts +1 -1
- package/src/rooms/records/get/0.1/payload.ts +155 -13
- package/src/rooms/records/list/0.1/payload.ts +2 -2
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Generated by scripts/build-ts-bindings.mjs — DO NOT EDIT BY HAND.
|
|
3
3
|
* Source: specs/rooms/records/get/0.1/payload.schema.json
|
|
4
4
|
*/
|
|
5
|
-
import type { AuthorityPresentation, DataCommitment, DigestMultibase, Ext, SealedRecord } from "../../../../_shared/components.js";
|
|
5
|
+
import type { AuthorityPresentation, DataCommitment, DigestMultibase, Ext, RecordTrace, SealedRecord } from "../../../../_shared/components.js";
|
|
6
6
|
export interface RoomsRecordsGetPayload {
|
|
7
7
|
/**
|
|
8
8
|
* The room's identifier.
|
|
@@ -27,6 +27,24 @@ export interface RoomsRecordsGetPayload {
|
|
|
27
27
|
export interface RoomsRecordsGetResponsePayload {
|
|
28
28
|
key: string;
|
|
29
29
|
version: number;
|
|
30
|
+
/**
|
|
31
|
+
* Curation state. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. A host that serves a `trace` MUST serve this, because a reader cannot reach the leaf without it — and a host that could omit it could retract a record without touching a byte of it.
|
|
32
|
+
*/
|
|
33
|
+
status?: "active" | "deprecated" | "retracted";
|
|
34
|
+
/**
|
|
35
|
+
* RFC 3339. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. Required alongside a `trace` for the same reason `status` is.
|
|
36
|
+
*/
|
|
37
|
+
updatedAt?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Present **only** when the record is pinned; absent means it is not. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. `false` is not a permitted spelling: absent is how false is written in the preimage, and two spellings would give one record two roots.
|
|
40
|
+
*/
|
|
41
|
+
pinned?: true;
|
|
42
|
+
/**
|
|
43
|
+
* The member who wrote it. Present on `open` and `attributed`, absent on `private` where the author is sealed with the body. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`.
|
|
44
|
+
*
|
|
45
|
+
* This member is new to this response and is a **disclosure**: `rooms/records/list` already returns it on those tiers, so it tells a reader nothing the family withheld, but a host serving a single record now names its writer where before it did not. It is not conditional on `trace` — a reader wanting the record without the writer's identifier is asking for a different room tier, not a different response.
|
|
46
|
+
*/
|
|
47
|
+
author?: string;
|
|
30
48
|
/**
|
|
31
49
|
* Present on an `attributed` or `private` room.
|
|
32
50
|
*/
|
|
@@ -38,13 +56,21 @@ export interface RoomsRecordsGetResponsePayload {
|
|
|
38
56
|
[k: string]: unknown | undefined;
|
|
39
57
|
};
|
|
40
58
|
/**
|
|
41
|
-
* The room's data commitment at the moment this record was read. Carried on a single-record read as well as a listing so a reader can tell whether the room moved between two reads — and
|
|
59
|
+
* The room's data commitment at the moment this record was read. Carried on a single-record read as well as a listing so a reader can tell whether the room moved between two reads — and so a `trace` returned beside it has a root to reach.
|
|
42
60
|
*/
|
|
43
61
|
dataCommitment?: DataCommitment;
|
|
62
|
+
/**
|
|
63
|
+
* The path from this record's leaf to `dataCommitment`, proving the record sits under the root the host just asserted.
|
|
64
|
+
*
|
|
65
|
+
* **The leaf preimage is this response payload with `dataCommitment`, `trace` and `ext` removed** — which is exactly `CommittedRecord`, and a reader MAY validate the object it assembles against that definition before hashing it. Nothing is reconstructed and no member is carried twice; the reader deletes three members from what it already holds.
|
|
66
|
+
*
|
|
67
|
+
* OPTIONAL, on the same reasoning as `dataCommitment`: a host that maintains no tree must not invent one. A host that serves this MUST have computed it and `dataCommitment` from the same snapshot, and MUST serve every committed member it holds — an omitted `status`, `updatedAt`, `pinned` or `author` yields a leaf the reader cannot reach, so the failure is a refused trace rather than a false one.
|
|
68
|
+
*/
|
|
69
|
+
trace?: RecordTrace;
|
|
44
70
|
ext?: Ext;
|
|
45
71
|
}
|
|
46
72
|
/** Shared definitions this specification references, re-exported under the names it used to declare them with. */
|
|
47
|
-
export type { AuthorityPresentation, DataCommitment, DigestMultibase, Ext, SealedRecord };
|
|
73
|
+
export type { AuthorityPresentation, DataCommitment, DigestMultibase, Ext, RecordTrace, SealedRecord };
|
|
48
74
|
/** Trust Task type URI. */
|
|
49
75
|
export declare const TYPE_URI: "https://trusttasks.org/spec/rooms/records/get/0.1";
|
|
50
76
|
/** Stable alias for this specification's request payload shape. */
|
|
@@ -104,6 +130,25 @@ export declare const PAYLOAD_SCHEMA: {
|
|
|
104
130
|
readonly type: "integer";
|
|
105
131
|
readonly minimum: 1;
|
|
106
132
|
};
|
|
133
|
+
readonly status: {
|
|
134
|
+
readonly type: "string";
|
|
135
|
+
readonly enum: readonly ["active", "deprecated", "retracted"];
|
|
136
|
+
readonly description: "Curation state. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. A host that serves a `trace` MUST serve this, because a reader cannot reach the leaf without it — and a host that could omit it could retract a record without touching a byte of it.";
|
|
137
|
+
};
|
|
138
|
+
readonly updatedAt: {
|
|
139
|
+
readonly type: "string";
|
|
140
|
+
readonly format: "date-time";
|
|
141
|
+
readonly description: "RFC 3339. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. Required alongside a `trace` for the same reason `status` is.";
|
|
142
|
+
};
|
|
143
|
+
readonly pinned: {
|
|
144
|
+
readonly type: "boolean";
|
|
145
|
+
readonly const: true;
|
|
146
|
+
readonly description: "Present **only** when the record is pinned; absent means it is not. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. `false` is not a permitted spelling: absent is how false is written in the preimage, and two spellings would give one record two roots.";
|
|
147
|
+
};
|
|
148
|
+
readonly author: {
|
|
149
|
+
readonly type: "string";
|
|
150
|
+
readonly description: "The member who wrote it. Present on `open` and `attributed`, absent on `private` where the author is sealed with the body. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`.\n\nThis member is new to this response and is a **disclosure**: `rooms/records/list` already returns it on those tiers, so it tells a reader nothing the family withheld, but a host serving a single record now names its writer where before it did not. It is not conditional on `trace` — a reader wanting the record without the writer's identifier is asking for a different room tier, not a different response.";
|
|
151
|
+
};
|
|
107
152
|
readonly sealed: {
|
|
108
153
|
readonly $ref: "#/$defs/SealedRecord";
|
|
109
154
|
readonly description: "Present on an `attributed` or `private` room.";
|
|
@@ -115,12 +160,19 @@ export declare const PAYLOAD_SCHEMA: {
|
|
|
115
160
|
};
|
|
116
161
|
readonly dataCommitment: {
|
|
117
162
|
readonly $ref: "#/$defs/DataCommitment";
|
|
118
|
-
readonly description: "The room's data commitment at the moment this record was read. Carried on a single-record read as well as a listing so a reader can tell whether the room moved between two reads — and
|
|
163
|
+
readonly description: "The room's data commitment at the moment this record was read. Carried on a single-record read as well as a listing so a reader can tell whether the room moved between two reads — and so a `trace` returned beside it has a root to reach.";
|
|
164
|
+
};
|
|
165
|
+
readonly trace: {
|
|
166
|
+
readonly $ref: "#/$defs/RecordTrace";
|
|
167
|
+
readonly description: "The path from this record's leaf to `dataCommitment`, proving the record sits under the root the host just asserted.\n\n**The leaf preimage is this response payload with `dataCommitment`, `trace` and `ext` removed** — which is exactly `CommittedRecord`, and a reader MAY validate the object it assembles against that definition before hashing it. Nothing is reconstructed and no member is carried twice; the reader deletes three members from what it already holds.\n\nOPTIONAL, on the same reasoning as `dataCommitment`: a host that maintains no tree must not invent one. A host that serves this MUST have computed it and `dataCommitment` from the same snapshot, and MUST serve every committed member it holds — an omitted `status`, `updatedAt`, `pinned` or `author` yields a leaf the reader cannot reach, so the failure is a refused trace rather than a false one.";
|
|
119
168
|
};
|
|
120
169
|
readonly ext: {
|
|
121
170
|
readonly $ref: "#/$defs/Ext";
|
|
122
171
|
};
|
|
123
172
|
};
|
|
173
|
+
readonly dependentRequired: {
|
|
174
|
+
readonly trace: readonly ["dataCommitment", "status", "updatedAt"];
|
|
175
|
+
};
|
|
124
176
|
};
|
|
125
177
|
readonly Ext: {
|
|
126
178
|
readonly title: "Ext";
|
|
@@ -132,10 +184,26 @@ export declare const PAYLOAD_SCHEMA: {
|
|
|
132
184
|
readonly pattern: "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$";
|
|
133
185
|
};
|
|
134
186
|
};
|
|
135
|
-
readonly
|
|
136
|
-
readonly title: "
|
|
137
|
-
readonly
|
|
138
|
-
readonly
|
|
187
|
+
readonly RecordTrace: {
|
|
188
|
+
readonly title: "RecordTrace";
|
|
189
|
+
readonly type: "array";
|
|
190
|
+
readonly maxItems: 64;
|
|
191
|
+
readonly items: {
|
|
192
|
+
readonly type: "object";
|
|
193
|
+
readonly additionalProperties: false;
|
|
194
|
+
readonly required: readonly ["sibling", "siblingIsLeft"];
|
|
195
|
+
readonly properties: {
|
|
196
|
+
readonly sibling: {
|
|
197
|
+
readonly $ref: "#/$defs/DigestMultibase";
|
|
198
|
+
readonly description: "The sibling node's hash — a leaf hash or an internal node hash of this room's record tree, encoded exactly as `DataCommitment` is. A digest over **bytes**, produced by one of the two prefixed constructions in `DataCommitment`, not over a JSON document.";
|
|
199
|
+
};
|
|
200
|
+
readonly siblingIsLeft: {
|
|
201
|
+
readonly type: "boolean";
|
|
202
|
+
readonly description: "Whether the sibling is the **left** child of the parent; the node being proved is the other one. Concatenation order is the whole of what a Merkle proof asserts, so this bit is load-bearing — inverting it on a single step yields a different root, and a reader that infers it from the record's position has assumed a tree shape the host never stated.";
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
readonly description: "The path from one record's leaf to the room's `DataCommitment` — a Merkle inclusion proof, in the vocabulary this work already uses for it.\n\n**It is not called `proof`** because in this framework that word is taken: `proof` is the document's data-integrity proof (SPEC §7.3), and a payload member of the same name in the same document invites reading one for the other. The two are not interchangeable and the confusion would be silent.\n\n**To verify**, given the `CommittedRecord` reassembled from the same response:\n 1. `h = SHA-256(0x00 || JCS(record))` — the leaf, by `DataCommitment` step 2.\n 2. For each step in order: `h = SHA-256(0x01 || sibling || h)` when `siblingIsLeft` is true, and `SHA-256(0x01 || h || sibling)` when it is false.\n 3. `h` **MUST** equal the `dataCommitment` **carried in the same response**. Not one from an earlier read, and not one from a listing: a room moves, and a trace is only ever a statement about the tree it was cut from. A host **MUST** compute the trace and the commitment from the same snapshot.\n\nAn **empty array is valid** and is not the same as an absent member. It says the room holds exactly one record, whose leaf is the root; absence of `trace` says the host offered no trace at all.\n\nA trace is **not** always `ceil(log2 n)` steps. A level that promotes an odd node unchanged (`DataCommitment` step 4) contributes no step for that node, so a reader must follow the steps it was given rather than count them against a tree size it assumed.\n\n`maxItems` bounds a tree of 2⁶⁴ records. Verification cost is the reader's and the array is the host's, so the ceiling is stated rather than left to whoever writes the loop.\n\n**What a trace does not prove.** It binds a record to a root. It says nothing about whether that root is the room's — only comparing the root against one the host did not choose does that, exactly as `DataCommitment` describes. A reader that verifies a trace against a root received in the same breath has checked the host's arithmetic and nothing else. The two mechanisms answer different questions and neither substitutes for the other.";
|
|
139
207
|
};
|
|
140
208
|
readonly DigestMultibase: {
|
|
141
209
|
readonly title: "DigestMultibase";
|
|
@@ -145,6 +213,11 @@ export declare const PAYLOAD_SCHEMA: {
|
|
|
145
213
|
readonly pattern: "^(z[1-9A-HJ-NP-Za-km-z]+|u[A-Za-z0-9_-]+)$";
|
|
146
214
|
readonly examples: readonly ["zQmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR"];
|
|
147
215
|
};
|
|
216
|
+
readonly DataCommitment: {
|
|
217
|
+
readonly title: "DataCommitment";
|
|
218
|
+
readonly $ref: "#/$defs/DigestMultibase";
|
|
219
|
+
readonly description: "The root of the room's record tree — a host's commitment to *which records the room holds*, as distinct from what any one of them says.\n\nA room's records are already signed and room-bound, so a host cannot forge, alter or relocate one. What it can do for free is stay silent: a listing that omits a record is indistinguishable from a room that never held it. This value is what makes that omission detectable, so it is only worth anything when the reader can compare it against a copy the host did not choose for them — one it gave another member, one it gave the same member earlier, or the witnessed anchor. A commitment read once, in isolation, proves nothing; a host that shows two members two different roots has been caught.\n\n**The construction is normative**, because two hosts that compute different roots over the same room make every comparison meaningless:\n 1. Take every record the room holds — including tombstones, which are records — and order them by `key` using unsigned byte order.\n 2. Leaf: `SHA-256(0x00 || JCS(record))`, where the record is a `CommittedRecord` — that definition fixes the members exactly, and this step used to name a *projection* instead, which two implementations could read two ways — JCS is its RFC 8785 canonicalization, and `0x00` is RFC 6962's leaf-domain prefix.\n 3. Internal node: `SHA-256(0x01 || left || right)`.\n 4. A level with an odd number of nodes promotes the last one unchanged. It MUST NOT be duplicated: duplicating makes a tree of n leaves collide with one of n+1 whose last is repeated, so two different rooms commit to the same root.\n 5. A room holding no records commits to `SHA-256(\"\")`, a distinguished value rather than zeroes — a root of zeroes is what an uninitialised buffer looks like, and an empty room is a real state a host must be able to commit to honestly.\n\nThe leaf covers the whole record rather than its body, and that is deliberate: a host that could flip `status` from active to retracted, move `pinned`, or rewrite `author` on an `attributed` room would rewrite what the room means without touching a byte of ciphertext. The **plaintext is never involved** — on the sealed tiers the host holds ciphertext and commits to exactly what it stores.\n\nThe commitment is over the **whole room**, never over the page being returned. A page-scoped root is one a host satisfies by construction and could never fail.\n\nProving that a *particular* record sits under this root is a separate question, answered by `RecordTrace` on a single-record read. A commitment catches a host that equivocates; a trace binds one record to what the host committed to. Neither is the other, and a reader wanting completeness needs both plus a root it did not get from the host it is checking.";
|
|
220
|
+
};
|
|
148
221
|
readonly SealedRecord: {
|
|
149
222
|
readonly title: "SealedRecord";
|
|
150
223
|
readonly type: "object";
|
|
@@ -215,6 +288,25 @@ export declare const RESPONSE_PAYLOAD_SCHEMA: {
|
|
|
215
288
|
readonly type: "integer";
|
|
216
289
|
readonly minimum: 1;
|
|
217
290
|
};
|
|
291
|
+
readonly status: {
|
|
292
|
+
readonly type: "string";
|
|
293
|
+
readonly enum: readonly ["active", "deprecated", "retracted"];
|
|
294
|
+
readonly description: "Curation state. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. A host that serves a `trace` MUST serve this, because a reader cannot reach the leaf without it — and a host that could omit it could retract a record without touching a byte of it.";
|
|
295
|
+
};
|
|
296
|
+
readonly updatedAt: {
|
|
297
|
+
readonly type: "string";
|
|
298
|
+
readonly format: "date-time";
|
|
299
|
+
readonly description: "RFC 3339. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. Required alongside a `trace` for the same reason `status` is.";
|
|
300
|
+
};
|
|
301
|
+
readonly pinned: {
|
|
302
|
+
readonly type: "boolean";
|
|
303
|
+
readonly const: true;
|
|
304
|
+
readonly description: "Present **only** when the record is pinned; absent means it is not. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. `false` is not a permitted spelling: absent is how false is written in the preimage, and two spellings would give one record two roots.";
|
|
305
|
+
};
|
|
306
|
+
readonly author: {
|
|
307
|
+
readonly type: "string";
|
|
308
|
+
readonly description: "The member who wrote it. Present on `open` and `attributed`, absent on `private` where the author is sealed with the body. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`.\n\nThis member is new to this response and is a **disclosure**: `rooms/records/list` already returns it on those tiers, so it tells a reader nothing the family withheld, but a host serving a single record now names its writer where before it did not. It is not conditional on `trace` — a reader wanting the record without the writer's identifier is asking for a different room tier, not a different response.";
|
|
309
|
+
};
|
|
218
310
|
readonly sealed: {
|
|
219
311
|
readonly $ref: "#/$defs/SealedRecord";
|
|
220
312
|
readonly description: "Present on an `attributed` or `private` room.";
|
|
@@ -226,12 +318,19 @@ export declare const RESPONSE_PAYLOAD_SCHEMA: {
|
|
|
226
318
|
};
|
|
227
319
|
readonly dataCommitment: {
|
|
228
320
|
readonly $ref: "#/$defs/DataCommitment";
|
|
229
|
-
readonly description: "The room's data commitment at the moment this record was read. Carried on a single-record read as well as a listing so a reader can tell whether the room moved between two reads — and
|
|
321
|
+
readonly description: "The room's data commitment at the moment this record was read. Carried on a single-record read as well as a listing so a reader can tell whether the room moved between two reads — and so a `trace` returned beside it has a root to reach.";
|
|
322
|
+
};
|
|
323
|
+
readonly trace: {
|
|
324
|
+
readonly $ref: "#/$defs/RecordTrace";
|
|
325
|
+
readonly description: "The path from this record's leaf to `dataCommitment`, proving the record sits under the root the host just asserted.\n\n**The leaf preimage is this response payload with `dataCommitment`, `trace` and `ext` removed** — which is exactly `CommittedRecord`, and a reader MAY validate the object it assembles against that definition before hashing it. Nothing is reconstructed and no member is carried twice; the reader deletes three members from what it already holds.\n\nOPTIONAL, on the same reasoning as `dataCommitment`: a host that maintains no tree must not invent one. A host that serves this MUST have computed it and `dataCommitment` from the same snapshot, and MUST serve every committed member it holds — an omitted `status`, `updatedAt`, `pinned` or `author` yields a leaf the reader cannot reach, so the failure is a refused trace rather than a false one.";
|
|
230
326
|
};
|
|
231
327
|
readonly ext: {
|
|
232
328
|
readonly $ref: "#/$defs/Ext";
|
|
233
329
|
};
|
|
234
330
|
};
|
|
331
|
+
readonly dependentRequired: {
|
|
332
|
+
readonly trace: readonly ["dataCommitment", "status", "updatedAt"];
|
|
333
|
+
};
|
|
235
334
|
};
|
|
236
335
|
readonly Ext: {
|
|
237
336
|
readonly title: "Ext";
|
|
@@ -243,10 +342,26 @@ export declare const RESPONSE_PAYLOAD_SCHEMA: {
|
|
|
243
342
|
readonly pattern: "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$";
|
|
244
343
|
};
|
|
245
344
|
};
|
|
246
|
-
readonly
|
|
247
|
-
readonly title: "
|
|
248
|
-
readonly
|
|
249
|
-
readonly
|
|
345
|
+
readonly RecordTrace: {
|
|
346
|
+
readonly title: "RecordTrace";
|
|
347
|
+
readonly type: "array";
|
|
348
|
+
readonly maxItems: 64;
|
|
349
|
+
readonly items: {
|
|
350
|
+
readonly type: "object";
|
|
351
|
+
readonly additionalProperties: false;
|
|
352
|
+
readonly required: readonly ["sibling", "siblingIsLeft"];
|
|
353
|
+
readonly properties: {
|
|
354
|
+
readonly sibling: {
|
|
355
|
+
readonly $ref: "#/$defs/DigestMultibase";
|
|
356
|
+
readonly description: "The sibling node's hash — a leaf hash or an internal node hash of this room's record tree, encoded exactly as `DataCommitment` is. A digest over **bytes**, produced by one of the two prefixed constructions in `DataCommitment`, not over a JSON document.";
|
|
357
|
+
};
|
|
358
|
+
readonly siblingIsLeft: {
|
|
359
|
+
readonly type: "boolean";
|
|
360
|
+
readonly description: "Whether the sibling is the **left** child of the parent; the node being proved is the other one. Concatenation order is the whole of what a Merkle proof asserts, so this bit is load-bearing — inverting it on a single step yields a different root, and a reader that infers it from the record's position has assumed a tree shape the host never stated.";
|
|
361
|
+
};
|
|
362
|
+
};
|
|
363
|
+
};
|
|
364
|
+
readonly description: "The path from one record's leaf to the room's `DataCommitment` — a Merkle inclusion proof, in the vocabulary this work already uses for it.\n\n**It is not called `proof`** because in this framework that word is taken: `proof` is the document's data-integrity proof (SPEC §7.3), and a payload member of the same name in the same document invites reading one for the other. The two are not interchangeable and the confusion would be silent.\n\n**To verify**, given the `CommittedRecord` reassembled from the same response:\n 1. `h = SHA-256(0x00 || JCS(record))` — the leaf, by `DataCommitment` step 2.\n 2. For each step in order: `h = SHA-256(0x01 || sibling || h)` when `siblingIsLeft` is true, and `SHA-256(0x01 || h || sibling)` when it is false.\n 3. `h` **MUST** equal the `dataCommitment` **carried in the same response**. Not one from an earlier read, and not one from a listing: a room moves, and a trace is only ever a statement about the tree it was cut from. A host **MUST** compute the trace and the commitment from the same snapshot.\n\nAn **empty array is valid** and is not the same as an absent member. It says the room holds exactly one record, whose leaf is the root; absence of `trace` says the host offered no trace at all.\n\nA trace is **not** always `ceil(log2 n)` steps. A level that promotes an odd node unchanged (`DataCommitment` step 4) contributes no step for that node, so a reader must follow the steps it was given rather than count them against a tree size it assumed.\n\n`maxItems` bounds a tree of 2⁶⁴ records. Verification cost is the reader's and the array is the host's, so the ceiling is stated rather than left to whoever writes the loop.\n\n**What a trace does not prove.** It binds a record to a root. It says nothing about whether that root is the room's — only comparing the root against one the host did not choose does that, exactly as `DataCommitment` describes. A reader that verifies a trace against a root received in the same breath has checked the host's arithmetic and nothing else. The two mechanisms answer different questions and neither substitutes for the other.";
|
|
250
365
|
};
|
|
251
366
|
readonly DigestMultibase: {
|
|
252
367
|
readonly title: "DigestMultibase";
|
|
@@ -256,6 +371,11 @@ export declare const RESPONSE_PAYLOAD_SCHEMA: {
|
|
|
256
371
|
readonly pattern: "^(z[1-9A-HJ-NP-Za-km-z]+|u[A-Za-z0-9_-]+)$";
|
|
257
372
|
readonly examples: readonly ["zQmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR"];
|
|
258
373
|
};
|
|
374
|
+
readonly DataCommitment: {
|
|
375
|
+
readonly title: "DataCommitment";
|
|
376
|
+
readonly $ref: "#/$defs/DigestMultibase";
|
|
377
|
+
readonly description: "The root of the room's record tree — a host's commitment to *which records the room holds*, as distinct from what any one of them says.\n\nA room's records are already signed and room-bound, so a host cannot forge, alter or relocate one. What it can do for free is stay silent: a listing that omits a record is indistinguishable from a room that never held it. This value is what makes that omission detectable, so it is only worth anything when the reader can compare it against a copy the host did not choose for them — one it gave another member, one it gave the same member earlier, or the witnessed anchor. A commitment read once, in isolation, proves nothing; a host that shows two members two different roots has been caught.\n\n**The construction is normative**, because two hosts that compute different roots over the same room make every comparison meaningless:\n 1. Take every record the room holds — including tombstones, which are records — and order them by `key` using unsigned byte order.\n 2. Leaf: `SHA-256(0x00 || JCS(record))`, where the record is a `CommittedRecord` — that definition fixes the members exactly, and this step used to name a *projection* instead, which two implementations could read two ways — JCS is its RFC 8785 canonicalization, and `0x00` is RFC 6962's leaf-domain prefix.\n 3. Internal node: `SHA-256(0x01 || left || right)`.\n 4. A level with an odd number of nodes promotes the last one unchanged. It MUST NOT be duplicated: duplicating makes a tree of n leaves collide with one of n+1 whose last is repeated, so two different rooms commit to the same root.\n 5. A room holding no records commits to `SHA-256(\"\")`, a distinguished value rather than zeroes — a root of zeroes is what an uninitialised buffer looks like, and an empty room is a real state a host must be able to commit to honestly.\n\nThe leaf covers the whole record rather than its body, and that is deliberate: a host that could flip `status` from active to retracted, move `pinned`, or rewrite `author` on an `attributed` room would rewrite what the room means without touching a byte of ciphertext. The **plaintext is never involved** — on the sealed tiers the host holds ciphertext and commits to exactly what it stores.\n\nThe commitment is over the **whole room**, never over the page being returned. A page-scoped root is one a host satisfies by construction and could never fail.\n\nProving that a *particular* record sits under this root is a separate question, answered by `RecordTrace` on a single-record read. A commitment catches a host that equivocates; a trace binds one record to what the host committed to. Neither is the other, and a reader wanting completeness needs both plus a root it did not get from the host it is checking.";
|
|
378
|
+
};
|
|
259
379
|
readonly SealedRecord: {
|
|
260
380
|
readonly title: "SealedRecord";
|
|
261
381
|
readonly type: "object";
|
|
@@ -360,6 +480,25 @@ export declare const SPEC: {
|
|
|
360
480
|
readonly type: "integer";
|
|
361
481
|
readonly minimum: 1;
|
|
362
482
|
};
|
|
483
|
+
readonly status: {
|
|
484
|
+
readonly type: "string";
|
|
485
|
+
readonly enum: readonly ["active", "deprecated", "retracted"];
|
|
486
|
+
readonly description: "Curation state. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. A host that serves a `trace` MUST serve this, because a reader cannot reach the leaf without it — and a host that could omit it could retract a record without touching a byte of it.";
|
|
487
|
+
};
|
|
488
|
+
readonly updatedAt: {
|
|
489
|
+
readonly type: "string";
|
|
490
|
+
readonly format: "date-time";
|
|
491
|
+
readonly description: "RFC 3339. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. Required alongside a `trace` for the same reason `status` is.";
|
|
492
|
+
};
|
|
493
|
+
readonly pinned: {
|
|
494
|
+
readonly type: "boolean";
|
|
495
|
+
readonly const: true;
|
|
496
|
+
readonly description: "Present **only** when the record is pinned; absent means it is not. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. `false` is not a permitted spelling: absent is how false is written in the preimage, and two spellings would give one record two roots.";
|
|
497
|
+
};
|
|
498
|
+
readonly author: {
|
|
499
|
+
readonly type: "string";
|
|
500
|
+
readonly description: "The member who wrote it. Present on `open` and `attributed`, absent on `private` where the author is sealed with the body. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`.\n\nThis member is new to this response and is a **disclosure**: `rooms/records/list` already returns it on those tiers, so it tells a reader nothing the family withheld, but a host serving a single record now names its writer where before it did not. It is not conditional on `trace` — a reader wanting the record without the writer's identifier is asking for a different room tier, not a different response.";
|
|
501
|
+
};
|
|
363
502
|
readonly sealed: {
|
|
364
503
|
readonly $ref: "#/$defs/SealedRecord";
|
|
365
504
|
readonly description: "Present on an `attributed` or `private` room.";
|
|
@@ -371,12 +510,19 @@ export declare const SPEC: {
|
|
|
371
510
|
};
|
|
372
511
|
readonly dataCommitment: {
|
|
373
512
|
readonly $ref: "#/$defs/DataCommitment";
|
|
374
|
-
readonly description: "The room's data commitment at the moment this record was read. Carried on a single-record read as well as a listing so a reader can tell whether the room moved between two reads — and
|
|
513
|
+
readonly description: "The room's data commitment at the moment this record was read. Carried on a single-record read as well as a listing so a reader can tell whether the room moved between two reads — and so a `trace` returned beside it has a root to reach.";
|
|
514
|
+
};
|
|
515
|
+
readonly trace: {
|
|
516
|
+
readonly $ref: "#/$defs/RecordTrace";
|
|
517
|
+
readonly description: "The path from this record's leaf to `dataCommitment`, proving the record sits under the root the host just asserted.\n\n**The leaf preimage is this response payload with `dataCommitment`, `trace` and `ext` removed** — which is exactly `CommittedRecord`, and a reader MAY validate the object it assembles against that definition before hashing it. Nothing is reconstructed and no member is carried twice; the reader deletes three members from what it already holds.\n\nOPTIONAL, on the same reasoning as `dataCommitment`: a host that maintains no tree must not invent one. A host that serves this MUST have computed it and `dataCommitment` from the same snapshot, and MUST serve every committed member it holds — an omitted `status`, `updatedAt`, `pinned` or `author` yields a leaf the reader cannot reach, so the failure is a refused trace rather than a false one.";
|
|
375
518
|
};
|
|
376
519
|
readonly ext: {
|
|
377
520
|
readonly $ref: "#/$defs/Ext";
|
|
378
521
|
};
|
|
379
522
|
};
|
|
523
|
+
readonly dependentRequired: {
|
|
524
|
+
readonly trace: readonly ["dataCommitment", "status", "updatedAt"];
|
|
525
|
+
};
|
|
380
526
|
};
|
|
381
527
|
readonly Ext: {
|
|
382
528
|
readonly title: "Ext";
|
|
@@ -388,10 +534,26 @@ export declare const SPEC: {
|
|
|
388
534
|
readonly pattern: "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$";
|
|
389
535
|
};
|
|
390
536
|
};
|
|
391
|
-
readonly
|
|
392
|
-
readonly title: "
|
|
393
|
-
readonly
|
|
394
|
-
readonly
|
|
537
|
+
readonly RecordTrace: {
|
|
538
|
+
readonly title: "RecordTrace";
|
|
539
|
+
readonly type: "array";
|
|
540
|
+
readonly maxItems: 64;
|
|
541
|
+
readonly items: {
|
|
542
|
+
readonly type: "object";
|
|
543
|
+
readonly additionalProperties: false;
|
|
544
|
+
readonly required: readonly ["sibling", "siblingIsLeft"];
|
|
545
|
+
readonly properties: {
|
|
546
|
+
readonly sibling: {
|
|
547
|
+
readonly $ref: "#/$defs/DigestMultibase";
|
|
548
|
+
readonly description: "The sibling node's hash — a leaf hash or an internal node hash of this room's record tree, encoded exactly as `DataCommitment` is. A digest over **bytes**, produced by one of the two prefixed constructions in `DataCommitment`, not over a JSON document.";
|
|
549
|
+
};
|
|
550
|
+
readonly siblingIsLeft: {
|
|
551
|
+
readonly type: "boolean";
|
|
552
|
+
readonly description: "Whether the sibling is the **left** child of the parent; the node being proved is the other one. Concatenation order is the whole of what a Merkle proof asserts, so this bit is load-bearing — inverting it on a single step yields a different root, and a reader that infers it from the record's position has assumed a tree shape the host never stated.";
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
readonly description: "The path from one record's leaf to the room's `DataCommitment` — a Merkle inclusion proof, in the vocabulary this work already uses for it.\n\n**It is not called `proof`** because in this framework that word is taken: `proof` is the document's data-integrity proof (SPEC §7.3), and a payload member of the same name in the same document invites reading one for the other. The two are not interchangeable and the confusion would be silent.\n\n**To verify**, given the `CommittedRecord` reassembled from the same response:\n 1. `h = SHA-256(0x00 || JCS(record))` — the leaf, by `DataCommitment` step 2.\n 2. For each step in order: `h = SHA-256(0x01 || sibling || h)` when `siblingIsLeft` is true, and `SHA-256(0x01 || h || sibling)` when it is false.\n 3. `h` **MUST** equal the `dataCommitment` **carried in the same response**. Not one from an earlier read, and not one from a listing: a room moves, and a trace is only ever a statement about the tree it was cut from. A host **MUST** compute the trace and the commitment from the same snapshot.\n\nAn **empty array is valid** and is not the same as an absent member. It says the room holds exactly one record, whose leaf is the root; absence of `trace` says the host offered no trace at all.\n\nA trace is **not** always `ceil(log2 n)` steps. A level that promotes an odd node unchanged (`DataCommitment` step 4) contributes no step for that node, so a reader must follow the steps it was given rather than count them against a tree size it assumed.\n\n`maxItems` bounds a tree of 2⁶⁴ records. Verification cost is the reader's and the array is the host's, so the ceiling is stated rather than left to whoever writes the loop.\n\n**What a trace does not prove.** It binds a record to a root. It says nothing about whether that root is the room's — only comparing the root against one the host did not choose does that, exactly as `DataCommitment` describes. A reader that verifies a trace against a root received in the same breath has checked the host's arithmetic and nothing else. The two mechanisms answer different questions and neither substitutes for the other.";
|
|
395
557
|
};
|
|
396
558
|
readonly DigestMultibase: {
|
|
397
559
|
readonly title: "DigestMultibase";
|
|
@@ -401,6 +563,11 @@ export declare const SPEC: {
|
|
|
401
563
|
readonly pattern: "^(z[1-9A-HJ-NP-Za-km-z]+|u[A-Za-z0-9_-]+)$";
|
|
402
564
|
readonly examples: readonly ["zQmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR"];
|
|
403
565
|
};
|
|
566
|
+
readonly DataCommitment: {
|
|
567
|
+
readonly title: "DataCommitment";
|
|
568
|
+
readonly $ref: "#/$defs/DigestMultibase";
|
|
569
|
+
readonly description: "The root of the room's record tree — a host's commitment to *which records the room holds*, as distinct from what any one of them says.\n\nA room's records are already signed and room-bound, so a host cannot forge, alter or relocate one. What it can do for free is stay silent: a listing that omits a record is indistinguishable from a room that never held it. This value is what makes that omission detectable, so it is only worth anything when the reader can compare it against a copy the host did not choose for them — one it gave another member, one it gave the same member earlier, or the witnessed anchor. A commitment read once, in isolation, proves nothing; a host that shows two members two different roots has been caught.\n\n**The construction is normative**, because two hosts that compute different roots over the same room make every comparison meaningless:\n 1. Take every record the room holds — including tombstones, which are records — and order them by `key` using unsigned byte order.\n 2. Leaf: `SHA-256(0x00 || JCS(record))`, where the record is a `CommittedRecord` — that definition fixes the members exactly, and this step used to name a *projection* instead, which two implementations could read two ways — JCS is its RFC 8785 canonicalization, and `0x00` is RFC 6962's leaf-domain prefix.\n 3. Internal node: `SHA-256(0x01 || left || right)`.\n 4. A level with an odd number of nodes promotes the last one unchanged. It MUST NOT be duplicated: duplicating makes a tree of n leaves collide with one of n+1 whose last is repeated, so two different rooms commit to the same root.\n 5. A room holding no records commits to `SHA-256(\"\")`, a distinguished value rather than zeroes — a root of zeroes is what an uninitialised buffer looks like, and an empty room is a real state a host must be able to commit to honestly.\n\nThe leaf covers the whole record rather than its body, and that is deliberate: a host that could flip `status` from active to retracted, move `pinned`, or rewrite `author` on an `attributed` room would rewrite what the room means without touching a byte of ciphertext. The **plaintext is never involved** — on the sealed tiers the host holds ciphertext and commits to exactly what it stores.\n\nThe commitment is over the **whole room**, never over the page being returned. A page-scoped root is one a host satisfies by construction and could never fail.\n\nProving that a *particular* record sits under this root is a separate question, answered by `RecordTrace` on a single-record read. A commitment catches a host that equivocates; a trace binds one record to what the host committed to. Neither is the other, and a reader wanting completeness needs both plus a root it did not get from the host it is checking.";
|
|
570
|
+
};
|
|
404
571
|
readonly SealedRecord: {
|
|
405
572
|
readonly title: "SealedRecord";
|
|
406
573
|
readonly type: "object";
|
|
@@ -482,6 +649,25 @@ export declare const RESPONSE_SPEC: {
|
|
|
482
649
|
readonly type: "integer";
|
|
483
650
|
readonly minimum: 1;
|
|
484
651
|
};
|
|
652
|
+
readonly status: {
|
|
653
|
+
readonly type: "string";
|
|
654
|
+
readonly enum: readonly ["active", "deprecated", "retracted"];
|
|
655
|
+
readonly description: "Curation state. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. A host that serves a `trace` MUST serve this, because a reader cannot reach the leaf without it — and a host that could omit it could retract a record without touching a byte of it.";
|
|
656
|
+
};
|
|
657
|
+
readonly updatedAt: {
|
|
658
|
+
readonly type: "string";
|
|
659
|
+
readonly format: "date-time";
|
|
660
|
+
readonly description: "RFC 3339. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. Required alongside a `trace` for the same reason `status` is.";
|
|
661
|
+
};
|
|
662
|
+
readonly pinned: {
|
|
663
|
+
readonly type: "boolean";
|
|
664
|
+
readonly const: true;
|
|
665
|
+
readonly description: "Present **only** when the record is pinned; absent means it is not. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`. `false` is not a permitted spelling: absent is how false is written in the preimage, and two spellings would give one record two roots.";
|
|
666
|
+
};
|
|
667
|
+
readonly author: {
|
|
668
|
+
readonly type: "string";
|
|
669
|
+
readonly description: "The member who wrote it. Present on `open` and `attributed`, absent on `private` where the author is sealed with the body. Committed. Mirrors `CommittedRecord`, which fixes the leaf preimage; see the note on `trace`.\n\nThis member is new to this response and is a **disclosure**: `rooms/records/list` already returns it on those tiers, so it tells a reader nothing the family withheld, but a host serving a single record now names its writer where before it did not. It is not conditional on `trace` — a reader wanting the record without the writer's identifier is asking for a different room tier, not a different response.";
|
|
670
|
+
};
|
|
485
671
|
readonly sealed: {
|
|
486
672
|
readonly $ref: "#/$defs/SealedRecord";
|
|
487
673
|
readonly description: "Present on an `attributed` or `private` room.";
|
|
@@ -493,12 +679,19 @@ export declare const RESPONSE_SPEC: {
|
|
|
493
679
|
};
|
|
494
680
|
readonly dataCommitment: {
|
|
495
681
|
readonly $ref: "#/$defs/DataCommitment";
|
|
496
|
-
readonly description: "The room's data commitment at the moment this record was read. Carried on a single-record read as well as a listing so a reader can tell whether the room moved between two reads — and
|
|
682
|
+
readonly description: "The room's data commitment at the moment this record was read. Carried on a single-record read as well as a listing so a reader can tell whether the room moved between two reads — and so a `trace` returned beside it has a root to reach.";
|
|
683
|
+
};
|
|
684
|
+
readonly trace: {
|
|
685
|
+
readonly $ref: "#/$defs/RecordTrace";
|
|
686
|
+
readonly description: "The path from this record's leaf to `dataCommitment`, proving the record sits under the root the host just asserted.\n\n**The leaf preimage is this response payload with `dataCommitment`, `trace` and `ext` removed** — which is exactly `CommittedRecord`, and a reader MAY validate the object it assembles against that definition before hashing it. Nothing is reconstructed and no member is carried twice; the reader deletes three members from what it already holds.\n\nOPTIONAL, on the same reasoning as `dataCommitment`: a host that maintains no tree must not invent one. A host that serves this MUST have computed it and `dataCommitment` from the same snapshot, and MUST serve every committed member it holds — an omitted `status`, `updatedAt`, `pinned` or `author` yields a leaf the reader cannot reach, so the failure is a refused trace rather than a false one.";
|
|
497
687
|
};
|
|
498
688
|
readonly ext: {
|
|
499
689
|
readonly $ref: "#/$defs/Ext";
|
|
500
690
|
};
|
|
501
691
|
};
|
|
692
|
+
readonly dependentRequired: {
|
|
693
|
+
readonly trace: readonly ["dataCommitment", "status", "updatedAt"];
|
|
694
|
+
};
|
|
502
695
|
};
|
|
503
696
|
readonly Ext: {
|
|
504
697
|
readonly title: "Ext";
|
|
@@ -510,10 +703,26 @@ export declare const RESPONSE_SPEC: {
|
|
|
510
703
|
readonly pattern: "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$";
|
|
511
704
|
};
|
|
512
705
|
};
|
|
513
|
-
readonly
|
|
514
|
-
readonly title: "
|
|
515
|
-
readonly
|
|
516
|
-
readonly
|
|
706
|
+
readonly RecordTrace: {
|
|
707
|
+
readonly title: "RecordTrace";
|
|
708
|
+
readonly type: "array";
|
|
709
|
+
readonly maxItems: 64;
|
|
710
|
+
readonly items: {
|
|
711
|
+
readonly type: "object";
|
|
712
|
+
readonly additionalProperties: false;
|
|
713
|
+
readonly required: readonly ["sibling", "siblingIsLeft"];
|
|
714
|
+
readonly properties: {
|
|
715
|
+
readonly sibling: {
|
|
716
|
+
readonly $ref: "#/$defs/DigestMultibase";
|
|
717
|
+
readonly description: "The sibling node's hash — a leaf hash or an internal node hash of this room's record tree, encoded exactly as `DataCommitment` is. A digest over **bytes**, produced by one of the two prefixed constructions in `DataCommitment`, not over a JSON document.";
|
|
718
|
+
};
|
|
719
|
+
readonly siblingIsLeft: {
|
|
720
|
+
readonly type: "boolean";
|
|
721
|
+
readonly description: "Whether the sibling is the **left** child of the parent; the node being proved is the other one. Concatenation order is the whole of what a Merkle proof asserts, so this bit is load-bearing — inverting it on a single step yields a different root, and a reader that infers it from the record's position has assumed a tree shape the host never stated.";
|
|
722
|
+
};
|
|
723
|
+
};
|
|
724
|
+
};
|
|
725
|
+
readonly description: "The path from one record's leaf to the room's `DataCommitment` — a Merkle inclusion proof, in the vocabulary this work already uses for it.\n\n**It is not called `proof`** because in this framework that word is taken: `proof` is the document's data-integrity proof (SPEC §7.3), and a payload member of the same name in the same document invites reading one for the other. The two are not interchangeable and the confusion would be silent.\n\n**To verify**, given the `CommittedRecord` reassembled from the same response:\n 1. `h = SHA-256(0x00 || JCS(record))` — the leaf, by `DataCommitment` step 2.\n 2. For each step in order: `h = SHA-256(0x01 || sibling || h)` when `siblingIsLeft` is true, and `SHA-256(0x01 || h || sibling)` when it is false.\n 3. `h` **MUST** equal the `dataCommitment` **carried in the same response**. Not one from an earlier read, and not one from a listing: a room moves, and a trace is only ever a statement about the tree it was cut from. A host **MUST** compute the trace and the commitment from the same snapshot.\n\nAn **empty array is valid** and is not the same as an absent member. It says the room holds exactly one record, whose leaf is the root; absence of `trace` says the host offered no trace at all.\n\nA trace is **not** always `ceil(log2 n)` steps. A level that promotes an odd node unchanged (`DataCommitment` step 4) contributes no step for that node, so a reader must follow the steps it was given rather than count them against a tree size it assumed.\n\n`maxItems` bounds a tree of 2⁶⁴ records. Verification cost is the reader's and the array is the host's, so the ceiling is stated rather than left to whoever writes the loop.\n\n**What a trace does not prove.** It binds a record to a root. It says nothing about whether that root is the room's — only comparing the root against one the host did not choose does that, exactly as `DataCommitment` describes. A reader that verifies a trace against a root received in the same breath has checked the host's arithmetic and nothing else. The two mechanisms answer different questions and neither substitutes for the other.";
|
|
517
726
|
};
|
|
518
727
|
readonly DigestMultibase: {
|
|
519
728
|
readonly title: "DigestMultibase";
|
|
@@ -523,6 +732,11 @@ export declare const RESPONSE_SPEC: {
|
|
|
523
732
|
readonly pattern: "^(z[1-9A-HJ-NP-Za-km-z]+|u[A-Za-z0-9_-]+)$";
|
|
524
733
|
readonly examples: readonly ["zQmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR"];
|
|
525
734
|
};
|
|
735
|
+
readonly DataCommitment: {
|
|
736
|
+
readonly title: "DataCommitment";
|
|
737
|
+
readonly $ref: "#/$defs/DigestMultibase";
|
|
738
|
+
readonly description: "The root of the room's record tree — a host's commitment to *which records the room holds*, as distinct from what any one of them says.\n\nA room's records are already signed and room-bound, so a host cannot forge, alter or relocate one. What it can do for free is stay silent: a listing that omits a record is indistinguishable from a room that never held it. This value is what makes that omission detectable, so it is only worth anything when the reader can compare it against a copy the host did not choose for them — one it gave another member, one it gave the same member earlier, or the witnessed anchor. A commitment read once, in isolation, proves nothing; a host that shows two members two different roots has been caught.\n\n**The construction is normative**, because two hosts that compute different roots over the same room make every comparison meaningless:\n 1. Take every record the room holds — including tombstones, which are records — and order them by `key` using unsigned byte order.\n 2. Leaf: `SHA-256(0x00 || JCS(record))`, where the record is a `CommittedRecord` — that definition fixes the members exactly, and this step used to name a *projection* instead, which two implementations could read two ways — JCS is its RFC 8785 canonicalization, and `0x00` is RFC 6962's leaf-domain prefix.\n 3. Internal node: `SHA-256(0x01 || left || right)`.\n 4. A level with an odd number of nodes promotes the last one unchanged. It MUST NOT be duplicated: duplicating makes a tree of n leaves collide with one of n+1 whose last is repeated, so two different rooms commit to the same root.\n 5. A room holding no records commits to `SHA-256(\"\")`, a distinguished value rather than zeroes — a root of zeroes is what an uninitialised buffer looks like, and an empty room is a real state a host must be able to commit to honestly.\n\nThe leaf covers the whole record rather than its body, and that is deliberate: a host that could flip `status` from active to retracted, move `pinned`, or rewrite `author` on an `attributed` room would rewrite what the room means without touching a byte of ciphertext. The **plaintext is never involved** — on the sealed tiers the host holds ciphertext and commits to exactly what it stores.\n\nThe commitment is over the **whole room**, never over the page being returned. A page-scoped root is one a host satisfies by construction and could never fail.\n\nProving that a *particular* record sits under this root is a separate question, answered by `RecordTrace` on a single-record read. A commitment catches a host that equivocates; a trace binds one record to what the host committed to. Neither is the other, and a reader wanting completeness needs both plus a root it did not get from the host it is checking.";
|
|
739
|
+
};
|
|
526
740
|
readonly SealedRecord: {
|
|
527
741
|
readonly title: "SealedRecord";
|
|
528
742
|
readonly type: "object";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../../src/rooms/records/get/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,qBAAqB,EAAE,cAAc,EAAE,eAAe,EAAE,GAAG,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;
|
|
1
|
+
{"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../../src/rooms/records/get/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,qBAAqB,EAAE,cAAc,EAAE,eAAe,EAAE,GAAG,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AAGhJ,MAAM,WAAW,sBAAsB;IACrC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,YAAY,EAAE,qBAAqB,CAAC;IACpC;;OAEG;IACH,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC7C,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,QAAQ,GAAG,YAAY,GAAG,WAAW,CAAC;IAC/C;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,IAAI,CAAC;IACd;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB;;OAEG;IACH,SAAS,CAAC,EAAE;QACV,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC;KAClC,CAAC;IACF;;OAEG;IACH,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,WAAW,CAAC;IACpB,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AAED,kHAAkH;AAClH,YAAY,EAAE,qBAAqB,EAAE,cAAc,EAAE,eAAe,EAAE,GAAG,EAAE,WAAW,EAAE,YAAY,EAAE,CAAC;AAEvG,2BAA2B;AAC3B,eAAO,MAAM,QAAQ,EAAG,mDAA4D,CAAC;AAErF,mEAAmE;AACnE,MAAM,MAAM,OAAO,GAAG,sBAAsB,CAAC;AAE7C,qEAAqE;AACrE,eAAO,MAAM,iBAAiB,EAAG,4DAAqE,CAAC;AAEvG,4EAA4E;AAC5E,MAAM,MAAM,QAAQ,GAAG,8BAA8B,CAAC;AAEtD;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8MjB,CAAC;AAEX,mEAAmE;AACnE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmL1B,CAAC;AAEX;;;;;GAKG;AACH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOP,CAAC;AAEX;;;;GAIG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOhB,CAAC"}
|