tech.lenooby09.kvcs.patch
Schema Diff
+2 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "tech.lenooby09.kvcs.patch",
3
3
"defs": {
4
4
"main": {
5
5
"key": "any",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"patchId",
11
11
"patchCbor",
12
12
"jws"
13
13
],
14
14
"properties": {
15
15
"jws": {
16
16
"type": "string",
17
17
"description": "Detached compact JWS over patchCbor, identical to the local SignedPatch.jws field."
18
18
},
19
19
"patchId": {
20
20
"type": "string",
21
21
"description": "Lower-case hex multihash of the canonical CBOR — matches kvcs's PatchId."
22
22
},
23
23
"patchCbor": {
24
24
"type": "string",
25
25
"description": "Base64url-encoded canonical CBOR of the signed patch."
26
26
}
27
27
}
28
-
}
28
+
},
29
+
"description": "A signed kvcs patch envelope record. Carries the canonical CBOR of the patch and its detached compact JWS, indexed by the patch's hex multihash id."
29
30
}
30
31
},
31
32
"$type": "com.atproto.lexicon.schema",
32
33
"lexicon": 1,
33
34
"description": "A signed kvcs patch envelope, addressable on the author's atproto PDS. The rkey is the patch id in hex."
34
35
}