app.userinput.status
Schema Diff
+1 -0
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 0 non-breaking changes.
Breaking Changes (1)
- ConstraintTightened ConstraintTightened { vertex_id: "app.userinput.status:body.state", sort: "enum", old_value: "open,under-review,planned,in-progress,implemented,declined,duplicate,closed", new_value: "open,under-review,backlog,planned,in-progress,implemented,declined,duplicate,closed" }
Migration Guidance
Constraint Changes
- ConstraintTightened ConstraintTightened { vertex_id: "app.userinput.status:body.state", sort: "enum", old_value: "open,under-review,planned,in-progress,implemented,declined,duplicate,closed", new_value: "open,under-review,backlog,planned,in-progress,implemented,declined,duplicate,closed" }
1
1
{
2
2
"id": "app.userinput.status",
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
"subject",
11
11
"state",
12
12
"createdAt"
13
13
],
14
14
"properties": {
15
15
"note": {
16
16
"type": "string",
17
17
"maxLength": 3000,
18
18
"maxGraphemes": 1500
19
19
},
20
20
"state": {
21
21
"enum": [
22
22
"open",
23
23
"under-review",
24
+
"backlog",
24
25
"planned",
25
26
"in-progress",
26
27
"implemented",
27
28
"declined",
28
29
"duplicate",
29
30
"closed"
30
31
],
31
32
"type": "string"
32
33
},
33
34
"subject": {
34
35
"ref": "com.atproto.repo.strongRef",
35
36
"type": "ref",
36
37
"description": "The discussion this status applies to. Indexed by constellation at subject.uri."
37
38
},
38
39
"createdAt": {
39
40
"type": "string",
40
41
"format": "datetime"
41
42
},
42
43
"duplicateOf": {
43
44
"ref": "com.atproto.repo.strongRef",
44
45
"type": "ref",
45
46
"description": "When state is 'duplicate', the canonical discussion this duplicates."
46
47
}
47
48
}
48
49
},
49
50
"description": "An official status assigned to a discussion. Only honored when authored by the space owner or an appointed moderator. Latest createdAt wins. Lives in the moderator's repo."
50
51
}
51
52
},
52
53
"$type": "com.atproto.lexicon.schema",
53
54
"lexicon": 1
54
55
}