app.didpic.admin.getActor
Schema Diff
+7 -0
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 3 non-breaking changes.
Breaking Changes (1)
- RequiredEdgeAdded RequiredEdgeAdded { vertex_id: "app.didpic.admin.getActor:output", src: "app.didpic.admin.getActor:output", tgt: "app.didpic.admin.getActor:output.pdsActive", kind: "prop", name: Some("pdsActive") }
Non-Breaking Changes (3)
- AddedVertex AddedVertex { vertex_id: "app.didpic.admin.getActor:output.pdsActive" }
- AddedVertex AddedVertex { vertex_id: "app.didpic.admin.getActor:output.pdsStatus" }
- AddedEdge AddedEdge { src: "app.didpic.admin.getActor:output", tgt: "app.didpic.admin.getActor:output.pdsStatus", kind: "prop", name: Some("pdsStatus") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "app.didpic.admin.getActor:output.pdsActive" }AddedVertex { vertex_id: "app.didpic.admin.getActor:output.pdsStatus" }
Additional Notes
- Breaking: RequiredEdgeAdded { vertex_id: "app.didpic.admin.getActor:output", src: "app.didpic.admin.getActor:output", tgt: "app.didpic.admin.getActor:output.pdsActive", kind: "prop", name: Some("pdsActive") }
- Non-breaking: AddedEdge { src: "app.didpic.admin.getActor:output", tgt: "app.didpic.admin.getActor:output.pdsStatus", kind: "prop", name: Some("pdsStatus") }
1
1
{
2
2
"id": "app.didpic.admin.getActor",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"did",
11
11
"accessStatus",
12
12
"takedown",
13
+
"pdsActive",
13
14
"roles",
14
15
"envAdmin",
15
16
"accountLabels"
16
17
],
17
18
"properties": {
18
19
"did": {
19
20
"type": "string",
20
21
"format": "did"
21
22
},
22
23
"roles": {
23
24
"type": "array",
24
25
"items": {
25
26
"type": "string"
26
27
}
27
28
},
28
29
"handle": {
29
30
"type": "string"
30
31
},
31
32
"envAdmin": {
32
33
"type": "boolean"
33
34
},
34
35
"takedown": {
35
36
"type": "boolean"
36
37
},
37
38
"avatarCid": {
38
39
"type": "string"
39
40
},
40
41
"bannerCid": {
41
42
"type": "string"
42
43
},
43
44
"indexedAt": {
44
45
"type": "string",
45
46
"format": "datetime"
46
47
},
48
+
"pdsActive": {
49
+
"type": "boolean"
50
+
},
51
+
"pdsStatus": {
52
+
"type": "string"
53
+
},
47
54
"description": {
48
55
"type": "string"
49
56
},
50
57
"displayName": {
51
58
"type": "string"
52
59
},
53
60
"firstSeenAt": {
54
61
"type": "string",
55
62
"format": "datetime"
56
63
},
57
64
"accessStatus": {
58
65
"enum": [
59
66
"active",
60
67
"suspended",
61
68
"data_deleted"
62
69
],
63
70
"type": "string"
64
71
},
65
72
"resyncStatus": {
66
73
"type": "string"
67
74
},
68
75
"accountLabels": {
69
76
"type": "array",
70
77
"items": {
71
78
"type": "string"
72
79
}
73
80
}
74
81
}
75
82
},
76
83
"encoding": "application/json"
77
84
},
78
85
"parameters": {
79
86
"type": "params",
80
87
"required": [
81
88
"did"
82
89
],
83
90
"properties": {
84
91
"did": {
85
92
"type": "string",
86
93
"format": "did"
87
94
}
88
95
}
89
96
},
90
97
"description": "Get an actor's moderation state, profile, roles, and labels."
91
98
}
92
99
},
93
100
"$type": "com.atproto.lexicon.schema",
94
101
"lexicon": 1
95
102
}