18 lines
575 B
JSON
18 lines
575 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/request/pushing/pushall.schema.json",
|
|
"title": "PushallRequest",
|
|
"allOf": [
|
|
{ "$ref": "../../../common/envelope.schema.json" },
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"command": { "const": "pushall" },
|
|
"version": { "type": "integer", "minimum": 1, "maximum": 1 },
|
|
"push_target": { "type": "integer" }
|
|
},
|
|
"required": ["version", "push_target"]
|
|
}
|
|
]
|
|
}
|