uk.skyblur.post.getPost
Schema Diff
+7 -2
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "uk.skyblur.post.getPost:output.listUri" }
- AddedEdge AddedEdge { src: "uk.skyblur.post.getPost:output", tgt: "uk.skyblur.post.getPost:output.listUri", kind: "prop", name: Some("listUri") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "uk.skyblur.post.getPost:output.listUri" }
Additional Notes
- Non-breaking: AddedEdge { src: "uk.skyblur.post.getPost:output", tgt: "uk.skyblur.post.getPost:output.listUri", kind: "prop", name: Some("listUri") }
1
1
{
2
2
"id": "uk.skyblur.post.getPost",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"uri"
11
11
],
12
12
"properties": {
13
13
"uri": {
14
14
"type": "string",
15
15
"format": "at-uri",
16
16
"description": "Skyblur post at-uri. It shoud be uk.skyblur.post collection."
17
17
},
18
18
"password": {
19
19
"type": "string",
20
20
"description": "If the specified uri is password-protected, please provide the password. If no password is specified, the non-protected content will be returned."
21
21
}
22
22
}
23
23
},
24
24
"encoding": "application/json"
25
25
},
26
26
"output": {
27
27
"schema": {
28
28
"type": "object",
29
29
"required": [
30
30
"text"
31
31
],
32
32
"properties": {
33
33
"text": {
34
34
"type": "string"
35
35
},
36
+
"listUri": {
37
+
"type": "string",
38
+
"format": "at-uri",
39
+
"description": "Selected Bluesky list AT-URI for list visibility. May be returned for authorized, masked and authorization error responses."
40
+
},
36
41
"message": {
37
42
"type": "string"
38
43
},
39
44
"createdAt": {
40
45
"type": "string",
41
46
"format": "datetime"
42
47
},
43
48
"errorCode": {
44
49
"type": "string",
45
-
"description": "Error code for restricted content. e.g. AuthRequired, NotFollower, NotFollowing, NotMutual"
50
+
"description": "Error code for restricted content. e.g. AuthRequired, NotFollower, NotFollowing, NotMutual, NotListMember, ListMembershipCheckFailed, ListUriMissing, InvalidListUri"
46
51
},
47
52
"additional": {
48
53
"type": "string"
49
54
},
50
55
"encryptCid": {
51
56
"type": "string"
52
57
},
53
58
"visibility": {
54
59
"type": "string"
55
60
},
56
61
"errorDescription": {
57
62
"type": "string",
58
63
"description": "Description of the error code."
59
64
}
60
65
}
61
66
},
62
67
"encoding": "application/json"
63
68
},
64
-
"description": "Get Skyblur post. If the specified post is password-protected, you can retrieve the unlocked content by providing the password. Auth required for followers, following and mutual."
69
+
"description": "Get Skyblur post. If the specified post is password-protected, you can retrieve the unlocked content by providing the password. Auth required for followers, following, mutual and list visibility."
65
70
}
66
71
},
67
72
"$type": "com.atproto.lexicon.schema",
68
73
"lexicon": 1
69
74
}