uk.skyblur.post.getPost
Schema Diff
+19 -1
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
36
"message": {
37
37
"type": "string"
38
38
},
39
+
"createdAt": {
40
+
"type": "string",
41
+
"format": "datetime"
42
+
},
43
+
"errorCode": {
44
+
"type": "string",
45
+
"description": "Error code for restricted content. e.g. AuthRequired, NotFollower, NotFollowing, NotMutual"
46
+
},
39
47
"additional": {
40
48
"type": "string"
49
+
},
50
+
"encryptCid": {
51
+
"type": "string"
52
+
},
53
+
"visibility": {
54
+
"type": "string"
55
+
},
56
+
"errorDescription": {
57
+
"type": "string",
58
+
"description": "Description of the error code."
41
59
}
42
60
}
43
61
},
44
62
"encoding": "application/json"
45
63
},
46
-
"description": "Get Skyblur post. If the specified post is password-protected, you can retrieve the unlocked content by providing the password."
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."
47
65
}
48
66
},
49
67
"$type": "com.atproto.lexicon.schema",
50
68
"lexicon": 1
51
69
}