Backfill in-progress. Some lexicons and records may be missing or incomplete.

app.bsky.video.defs

bsky-lexicons.bsky.social

Documentation

jobStatus object

Properties

blob blob Optional

No description provided.

did string did Required

A decentralized identifier (DID).

error string Optional

No description provided.

jobId string Required

No description provided.

message string Optional

No description provided.

progress integer Optional

Progress within the current processing state.

minimum: 0maximum: 100
state string Required

The state of the video processing job. All values not listed as a known value indicate that the job is in process.

Known values: JOB_STATE_COMPLETED, JOB_STATE_FAILED
View raw schema
{
  "type": "object",
  "required": [
    "jobId",
    "did",
    "state"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "blob": {
      "type": "blob"
    },
    "error": {
      "type": "string"
    },
    "jobId": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "description": "The state of the video processing job. All values not listed as a known value indicate that the job is in process.",
      "knownValues": [
        "JOB_STATE_COMPLETED",
        "JOB_STATE_FAILED"
      ]
    },
    "message": {
      "type": "string"
    },
    "progress": {
      "type": "integer",
      "maximum": 100,
      "minimum": 0,
      "description": "Progress within the current processing state."
    }
  }
}

Lexicon Garden

@