{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.octoturge.com/Continuum/continuum-schemas/raw/branch/main/schemas/bambulab/v1/common/upload.schema.json", "title": "Upload", "description": "File upload progress", "oneOf": [ { "type": "object", "properties": { "status": { "type": "string", "enum": [ "idle", "IDLE" ] }, "progress": { "type": "integer" }, "message": { "type": "string" } } }, { "type": "object", "properties": { "file_size": { "type": "integer" }, "finish_size": { "type": "integer" }, "message": { "type": "string" }, "oss_url": { "type": "string" }, "progress": { "type": "integer" }, "speed": { "type": "integer" }, "status": { "type": "string", "enum": [ "idle", "IDLE" ] }, "task_id": { "type": "string" }, "time_remaining": { "type": "integer" }, "trouble_id": { "type": "string" } } } ] }