18 lines
506 B
JSON
18 lines
506 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/extruder.schema.json",
|
|
"title": "DeviceExtruder",
|
|
"description": "Detailed info about Extruders",
|
|
"type": "object",
|
|
"properties": {
|
|
"info": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "./extruder_item.schema.json"
|
|
}
|
|
},
|
|
"state": { "type": "integer" }
|
|
},
|
|
"required": ["info", "state"]
|
|
}
|