site.exosphere.moderation
Schema Diff
+2 -6
Compatibility Analysis
Breaking Changes Detected
3 breaking changes, 0 non-breaking changes.
Breaking Changes (3)
- RemovedVertex RemovedVertex { vertex_id: "site.exosphere.moderation:body.createdAt" }
- RemovedEdge RemovedEdge { src: "site.exosphere.moderation:body", tgt: "site.exosphere.moderation:body.createdAt", kind: "prop", name: Some("createdAt") }
- ConstraintAdded ConstraintAdded { vertex_id: "site.exosphere.moderation:body.action", sort: "maxLength", value: "128" }
Migration Guidance
Removed Elements
RemovedVertex { vertex_id: "site.exosphere.moderation:body.createdAt" }
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "site.exosphere.moderation:body.action", sort: "maxLength", value: "128" }
Additional Notes
- Breaking: RemovedEdge { src: "site.exosphere.moderation:body", tgt: "site.exosphere.moderation:body.createdAt", kind: "prop", name: Some("createdAt") }
1
1
{
2
2
"id": "site.exosphere.moderation",
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
"sphere",
11
11
"subject",
12
-
"action",
13
-
"createdAt"
12
+
"action"
14
13
],
15
14
"properties": {
16
15
"action": {
17
16
"type": "string",
17
+
"maxLength": 128,
18
18
"knownValues": [
19
19
"remove"
20
20
]
21
21
},
22
22
"sphere": {
23
23
"type": "string",
24
24
"format": "at-uri",
25
25
"description": "AT URI of the Sphere."
26
26
},
27
27
"subject": {
28
28
"type": "string",
29
29
"format": "at-uri",
30
30
"description": "AT URI of the content being moderated."
31
-
},
32
-
"createdAt": {
33
-
"type": "string",
34
-
"format": "datetime"
35
31
}
36
32
}
37
33
},
38
34
"description": "A moderation action taken by a Sphere admin/owner. Published on the moderator's PDS."
39
35
}
40
36
},
41
37
"$type": "com.atproto.lexicon.schema",
42
38
"lexicon": 1
43
39
}