feat: Added new schemas
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"$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/print_speed.schema.json",
|
||||
"title": "PrintSpeedReport",
|
||||
"allOf": [
|
||||
{ "$ref": "../../../common/envelope.schema.json" },
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"command": { "const": "print_speed" },
|
||||
"param": {
|
||||
"description": "1 - silent (50%), 2 - standard (100%), 3 - sport (124%), 4 - ludicrous (166%)",
|
||||
"type": "string",
|
||||
"enum": ["1", "2", "3", "4"]
|
||||
}
|
||||
},
|
||||
"required": ["param"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user