80ada8f476
* lexicon: initial lexicons for video embeds in bsky app * lexicon: fix video caption file size limit * codegen * appview: stub out video embed view logic * api prerelease * api prerelease * lexicon: video upload/processing lexicons * tidy * lexicon: app.bsky.video lexicons for uploads * codegen * api prerelease * appview: present video embeds on posts * appview: snaps * changeset * appview: fix wiring of video url config
33 lines
695 B
JSON
33 lines
695 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "app.bsky.video.getJobStatus",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"description": "Get status details for a video processing job.",
|
|
"parameters": {
|
|
"type": "params",
|
|
"required": ["jobId"],
|
|
"properties": {
|
|
"jobId": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["jobStatus"],
|
|
"properties": {
|
|
"jobStatus": {
|
|
"type": "ref",
|
|
"ref": "app.bsky.video.defs#jobStatus"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|