atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.video.getUploadLimits",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Get video upload limits for the authenticated user.",
8 "output": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": [
13 "canUpload"
14 ],
15 "properties": {
16 "canUpload": {
17 "type": "boolean"
18 },
19 "error": {
20 "type": "string"
21 },
22 "message": {
23 "type": "string"
24 },
25 "remainingDailyBytes": {
26 "type": "integer"
27 },
28 "remainingDailyVideos": {
29 "type": "integer"
30 }
31 }
32 }
33 }
34 }
35 }
36}