{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.octoturge.com/Continuum/continuum-schemas/raw/branch/main/schemas/bambulab/v1/report.schema.json", "title": "BambuReport", "description": "Matches continuum-proxy's src/printer/bambu_commands::BambuReport. Note the category here is \"print\", not \"pushing\" — sending a pushall request (which does go to \"pushing\", see request.schema.json) makes the printer start/refresh the ongoing state-push stream, which itself arrives under \"print\". They're different root keys because a report category means 'what key does this arrive under', not 'what request caused it'. Each category's value is a oneOf for the same reason as request.schema.json: room for more than one shape per category without a rewrite later.", "type": "object", "minProperties": 1, "maxProperties": 1, "properties": { "info": { "oneOf": [ { "$ref": "report/info/get_version.schema.json" } ] }, "print": { "oneOf": [ { "$ref": "report/print/print.schema.json" } ] } }, "additionalProperties": false }