app.bsky.video.defs

bsky-lexicons.bsky.social

Documentation

jobStatus object

No description available.

Properties

blob blob Optional

No description available.

did string did Required

A decentralized identifier (DID).

error string Optional

No description available.

jobId string Required

No description available.

message string Optional

No description available.

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

@