{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://continuum.internal/schemas/bambulab/v1/report/get_version.schema.json", "title": "GetVersionResponse", "allOf": [ { "$ref": "../../envelope.schema.json" }, { "type": "object", "properties": { "command": { "const": "get_version" }, "result": { "type": "string" }, "reason": { "type": "string" }, "module": { "type": "array", "items": { "$ref": "module_info.schema.json" } } }, "required": ["module"] } ] }