appBskyVideoGetUploadLimits top-level constant
app.bsky.video.getUploadLimits
Implementation
const appBskyVideoGetUploadLimits = <String, dynamic>{
"lexicon": 1,
"id": "app.bsky.video.getUploadLimits",
"defs": {
"main": {
"type": "query",
"description": "Get video upload limits for the authenticated user.",
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["canUpload"],
"properties": {
"canUpload": {"type": "boolean"},
"remainingDailyVideos": {"type": "integer"},
"remainingDailyBytes": {"type": "integer"},
"message": {"type": "string"},
"error": {"type": "string"}
}
}
}
}
}
};