feat: push_status report for Bambu MQTT v2
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "https://git.octoturge.com/Continuum/continuum-schemas/raw/branch/main/schemas/bambulab/v2/common/job/job.schema.json",
|
||||
"title": "Job",
|
||||
"description": "Print job details",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"cur_stage": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"idx": { "type": "number" },
|
||||
"state": { "type": "number" }
|
||||
},
|
||||
"required": ["idx", "state"]
|
||||
},
|
||||
"stage": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "./stage.schema.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": ["cur_stage", "stage"]
|
||||
}
|
||||
Reference in New Issue
Block a user