27 lines
698 B
JSON
27 lines
698 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/info/_module_info.schema.json",
|
|
"title": "ModuleInfo",
|
|
"type": "object",
|
|
"properties": {
|
|
"name": { "type": "string" },
|
|
"sw_ver": { "type": "string" },
|
|
"hw_ver": { "type": "string" },
|
|
"loader_ver": { "type": "string" },
|
|
"product_name": { "type": "string" },
|
|
"sn": { "type": "string" },
|
|
"visible": { "type": "boolean" },
|
|
"flag": { "type": "integer" }
|
|
},
|
|
"required": [
|
|
"name",
|
|
"sw_ver",
|
|
"hw_ver",
|
|
"loader_ver",
|
|
"sn",
|
|
"product_name",
|
|
"visible",
|
|
"flag"
|
|
]
|
|
}
|