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

20 lines
641 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/ext_tool.schema.json",
"title": "DeviceExternalTool",
"description": "Detailed info about External Tool",
"type": "object",
"properties": {
"calib": { "type": "integer" },
"low_prec": { "type": "boolean" },
"mount": { "type": "integer" },
"mount_3d": { "type": "integer" },
"th_temp": { "type": "integer" },
"type": { "type": "string" }
},
"required": [
"calib", "low_prec", "mount",
"mount_3d", "th_temp", "type"
]
}