tech.lenooby09.kvcs.channel
Schema Diff
+2 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "tech.lenooby09.kvcs.channel",
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
"name",
11
11
"heads"
12
12
],
13
13
"properties": {
14
14
"name": {
15
15
"type": "string",
16
16
"description": "Channel name (e.g. \"main\")."
17
17
},
18
18
"heads": {
19
19
"type": "array",
20
20
"items": {
21
21
"type": "string"
22
22
},
23
23
"description": "Hex patch ids that are tips of this channel."
24
24
}
25
25
}
26
-
}
26
+
},
27
+
"description": "A kvcs channel head record. Holds the human-readable channel name and the hex patch ids that are currently the tips of the channel."
27
28
}
28
29
},
29
30
"$type": "com.atproto.lexicon.schema",
30
31
"lexicon": 1,
31
32
"description": "A kvcs channel head — points at one or more patch records under tech.lenooby09.kvcs.patch."
32
33
}