social.colibri.notification.unregisterPush
Schema Diff
+6 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.notification.unregisterPush",
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
"endpoint"
11
11
],
12
12
"properties": {
13
13
"endpoint": {
14
14
"type": "string",
15
15
"description": "The Web Push endpoint URL or FCM registration token to remove."
16
16
},
17
17
"provider": {
18
18
"type": "string",
19
19
"description": "Defaults to \"web\" if omitted.",
20
20
"knownValues": [
21
21
"web",
22
22
"fcm"
23
23
]
24
24
}
25
25
}
26
26
},
27
27
"encoding": "application/json"
28
28
},
29
+
"errors": [
30
+
{
31
+
"name": "AuthRequired",
32
+
"description": "Missing, malformed, or unverifiable service auth."
33
+
}
34
+
],
29
35
"output": {
30
36
"schema": {
31
37
"type": "object",
32
38
"required": [
33
39
"unregistered"
34
40
],
35
41
"properties": {
36
42
"unregistered": {
37
43
"type": "boolean"
38
44
}
39
45
}
40
46
},
41
47
"encoding": "application/json"
42
48
},
43
49
"description": "Removes a push subscription."
44
50
}
45
51
},
46
52
"$type": "com.atproto.lexicon.schema",
47
53
"lexicon": 1
48
54
}