21 lines
911 B
JSON
21 lines
911 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/report/print/_xcam.schema.json",
|
|
"title": "XcamSettings",
|
|
"description": "Camera-based AI print monitoring settings (spaghetti detection, first-layer inspection, etc.).",
|
|
"type": "object",
|
|
"properties": {
|
|
"allow_skip_parts": { "type": "boolean" },
|
|
"buildplate_marker_detector": { "type": "boolean" },
|
|
"first_layer_inspector": { "type": "boolean" },
|
|
"halt_print_sensitivity": { "type": "string" },
|
|
"print_halt": { "type": "boolean" },
|
|
"printing_monitor": { "type": "boolean" },
|
|
"spaghetti_detector": { "type": "boolean" }
|
|
},
|
|
"required": [
|
|
"allow_skip_parts", "buildplate_marker_detector", "first_layer_inspector",
|
|
"halt_print_sensitivity", "print_halt", "printing_monitor", "spaghetti_detector"
|
|
]
|
|
}
|