22 lines
851 B
JSON
22 lines
851 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://git.octoturge.com/Continuum/continuum-schemas/raw/branch/main/schemas/bambulab/v1/common/upgrade_state.schema.json",
|
|
"title": "UpgradeState",
|
|
"type": "object",
|
|
"properties": {
|
|
"sequence": { "type": "string" },
|
|
"progress": { "type": "string" },
|
|
"status": { "type": "string", "enum": ["idle", "IDLE"]},
|
|
"consistency_request": { "type": "boolean" },
|
|
"dis_state": { "type": "integer" },
|
|
"err_code": { "type": "integer" },
|
|
"force_upgrade": { "type": "boolean" },
|
|
"message": { "type": "string" },
|
|
"module": { "type": "string" },
|
|
"new_version_state": { "type": "integer" },
|
|
"cur_state_code": { "type": "integer" },
|
|
"idx2": { "type": "integer" },
|
|
"new_ver_list": { "type": "array", "items": { "type": "string" } }
|
|
}
|
|
}
|