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: 100state
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_FAILEDView 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."
}
}
}