17 lines
529 B
JSON
17 lines
529 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/report/print/gcode_line.schema.json",
|
|
"title": "GcodeLineReport",
|
|
"allOf": [
|
|
{ "$ref": "../../../common/envelope.schema.json" },
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"command": { "const": "gcode_line" },
|
|
"param": { "description": "use \n for multiple lines", "type": "string" }
|
|
},
|
|
"required": ["param"]
|
|
}
|
|
]
|
|
}
|