lol.mlf.package
Schema Diff
+20 -22
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "lol.mlf.package",
3
3
"defs": {
4
4
"main": {
5
-
"key": "tid",
5
+
"key": "nsid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"publishedAt",
11
11
"tool",
12
12
"published"
13
13
],
14
14
"properties": {
15
15
"tool": {
16
-
"type": "string",
17
-
"description": "Version string of the MLF tool that produced the publish\n(e.g. `\"mlf@0.1.0\"`)."
16
+
"type": "string"
18
17
},
19
18
"published": {
20
19
"type": "array",
21
20
"items": {
22
21
"ref": "#PublishedItem",
23
22
"type": "ref"
24
-
},
25
-
"description": "Every lexicon record the publish wrote to the PDS in this event,\nsorted lexicographically by NSID."
23
+
}
26
24
},
27
25
"publishedAt": {
28
26
"type": "string",
29
-
"format": "datetime",
30
-
"description": "ISO 8601 timestamp of when the publish completed."
27
+
"format": "datetime"
31
28
},
32
29
"resolvedDependencies": {
33
30
"type": "array",
34
31
"items": {
35
32
"ref": "#ResolvedDependency",
36
33
"type": "ref"
37
-
},
38
-
"description": "Every external lexicon the workspace resolved against at publish\ntime, pinned to the remote CID observed during the publish.\nEmpty list when the package has no external dependencies."
34
+
}
39
35
}
40
36
}
41
37
}
42
38
},
43
39
"PublishedItem": {
44
40
"type": "object",
45
41
"required": [
46
42
"nsid",
47
43
"cid"
48
44
],
49
45
"properties": {
50
46
"cid": {
51
47
"type": "string",
52
-
"format": "cid",
53
-
"description": "CID of the record as stored on the PDS."
48
+
"format": "cid"
54
49
},
55
50
"nsid": {
56
51
"type": "string",
57
-
"format": "nsid",
58
-
"description": "NSID of the published lexicon."
52
+
"format": "nsid"
59
53
}
60
-
},
61
-
"description": "One lexicon record included in a publish."
54
+
}
62
55
},
63
56
"ResolvedDependency": {
64
57
"type": "object",
65
58
"required": [
66
59
"nsid",
67
60
"cid"
68
61
],
69
62
"properties": {
70
63
"cid": {
71
64
"type": "string",
72
-
"format": "cid",
73
-
"description": "CID of the record at the moment of the publish."
65
+
"format": "cid"
74
66
},
75
67
"nsid": {
76
68
"type": "string",
77
-
"format": "nsid",
78
-
"description": "NSID of the external lexicon the package linked against."
69
+
"format": "nsid"
79
70
}
80
-
},
81
-
"description": "One external dependency pinned at publish time."
71
+
}
82
72
}
83
73
},
74
+
"tool": "mlf@0.1.0",
84
75
"$type": "com.atproto.lexicon.schema",
85
76
"lexicon": 1,
86
-
"description": "MLF publish manifest — one record per publish event.\n\nWritten by `mlf publish` into the author's PDS alongside the\nlexicons themselves. The record's own CID is the durable identifier\nfor \"this specific publish\" — a content-addressed release pointer\nthat binds the set of published items and the dependency versions\nthey were resolved against."
77
+
"published": [
78
+
{
79
+
"cid": "bafyreicejizdbqjxzhye7bedv5xmmhuxhf4oxjc67kp57noyhynbtbfv6y",
80
+
"nsid": "lol.mlf.package"
81
+
}
82
+
],
83
+
"description": "MLF publish manifest",
84
+
"publishedAt": "2026-04-18T05:44:36.455833+00:00"
87
85
}