19 lines
635 B
JSON
19 lines
635 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://git.octoturge.com/Continuum/continuum-schemas/raw/branch/main/schemas/bambulab/v2/common/device/nozzle.schema.json",
|
|
"title": "DeviceNozzle",
|
|
"description": "Detailed info about available Nozzles",
|
|
"type": "object",
|
|
"properties": {
|
|
"info": {
|
|
"type": "array",
|
|
"items": { "$ref": "./nozzle_item.schema.json" }
|
|
},
|
|
"exist": { "type": "integer" },
|
|
"src_id": { "type": "integer" },
|
|
"state": { "type": "integer" },
|
|
"tar_id": { "type": "integer" }
|
|
},
|
|
"required": [ "info", "exist", "src_id", "state", "tar_id" ]
|
|
}
|