lol.mlf.package
Schema Diff
+0 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "lol.mlf.package",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
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
16
"type": "string",
17
17
"description": "Version string of the MLF tool that produced the publish\n(e.g. `\"mlf@0.1.0\"`)."
18
18
},
19
19
"published": {
20
20
"type": "array",
21
21
"items": {
22
22
"ref": "#PublishedItem",
23
23
"type": "ref"
24
24
},
25
25
"description": "Every lexicon record the publish wrote to the PDS in this event,\nsorted lexicographically by NSID."
26
26
},
27
27
"publishedAt": {
28
28
"type": "string",
29
29
"format": "datetime",
30
30
"description": "ISO 8601 timestamp of when the publish completed."
31
31
},
32
32
"resolvedDependencies": {
33
33
"type": "array",
34
34
"items": {
35
35
"ref": "#ResolvedDependency",
36
36
"type": "ref"
37
37
},
38
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."
39
39
}
40
40
}
41
41
}
42
42
},
43
43
"PublishedItem": {
44
44
"type": "object",
45
45
"required": [
46
46
"nsid",
47
47
"cid"
48
48
],
49
49
"properties": {
50
50
"cid": {
51
51
"type": "string",
52
52
"format": "cid",
53
53
"description": "CID of the record as stored on the PDS."
54
54
},
55
55
"nsid": {
56
56
"type": "string",
57
57
"format": "nsid",
58
58
"description": "NSID of the published lexicon."
59
59
}
60
60
},
61
61
"description": "One lexicon record included in a publish."
62
62
},
63
63
"ResolvedDependency": {
64
64
"type": "object",
65
65
"required": [
66
66
"nsid",
67
67
"cid"
68
68
],
69
69
"properties": {
70
70
"cid": {
71
71
"type": "string",
72
72
"format": "cid",
73
73
"description": "CID of the record at the moment of the publish."
74
74
},
75
75
"nsid": {
76
76
"type": "string",
77
77
"format": "nsid",
78
78
"description": "NSID of the external lexicon the package linked against."
79
79
}
80
80
},
81
81
"description": "One external dependency pinned at publish time."
82
82
}
83
83
},
84
84
"$type": "com.atproto.lexicon.schema",
85
85
"lexicon": 1,
86
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."
87
87
}