atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.video.defs",
4 "defs": {
5 "jobStatus": {
6 "type": "object",
7 "required": [
8 "jobId",
9 "did",
10 "state"
11 ],
12 "properties": {
13 "blob": {
14 "type": "blob"
15 },
16 "did": {
17 "type": "string",
18 "format": "did"
19 },
20 "error": {
21 "type": "string"
22 },
23 "jobId": {
24 "type": "string"
25 },
26 "message": {
27 "type": "string"
28 },
29 "progress": {
30 "type": "integer",
31 "description": "Progress within the current processing state.",
32 "minimum": 0,
33 "maximum": 100
34 },
35 "state": {
36 "type": "string",
37 "description": "The state of the video processing job. All values not listed as a known value indicate that the job is in process.",
38 "knownValues": [
39 "JOB_STATE_COMPLETED",
40 "JOB_STATE_FAILED"
41 ]
42 }
43 }
44 }
45 }
46}