Files
continuum-schemas/schemas/bambulab/v2/common/device/device.schema.json
T

30 lines
1.1 KiB
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/device.schema.json",
"title": "DeviceBed",
"description": "Detailed info about all available devices",
"type": "object",
"properties": {
"airduct": { "$ref": "./airduct.schema.json" },
"bed": { "$ref": "./bed.schema.json`" },
"cam": { "$ref": "./cam.schema.json" },
"ctc": { "$ref": "./ctc.schema.json" },
"ext_tool": { "$ref": "./ext_tool.schema.json" },
"extruder": { "$ref": "./extruder.schema.json" },
"fire_ext": { "$ref": "./fire_ext.schema.json" },
"holder": { "$ref": "./holder.schema.json" },
"laser": { "$ref": "./laser.schema.json" },
"nozzle": { "$ref": "./nozzle.schema.json" },
"plate": { "$ref": "./plate.schema.json" },
"bed_temp": { "type": "integer" },
"fan": { "type": "integer" },
"type": { "type": "integer" }
},
"required": [
"airduct", "bed", "cam", "ctc",
"ext_tool", "extruder", "fire_ext", "holder",
"laser", "nozzle", "plate", "bed_temp",
"fan", "type"
]
}