24 lines
799 B
JSON
24 lines
799 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/nozzle_item.schema.json",
|
|
"title": "DeviceNozzleItem",
|
|
"description": "Detailed info about specific Nozzle",
|
|
"type": "object",
|
|
"properties": {
|
|
"color_m": { "type": "string" },
|
|
"diameter": { "$ref": "../nozzle_diameter.schema.json" },
|
|
"fila_id": { "type": "integer" },
|
|
"id": { "type": "integer" },
|
|
"sn": { "type": "string" },
|
|
"stat": { "type": "integer" },
|
|
"tm": { "type": "integer" },
|
|
"type": { "$ref": "../nozzle_type.schema.json" },
|
|
"wear": { "type": "number" }
|
|
},
|
|
"required": [
|
|
"color_m", "diameter", "fila_id",
|
|
"id", "sn", "stat",
|
|
"tm", "type", "wear"
|
|
]
|
|
}
|