{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.octoturge.com/Continuum/continuum-schemas/raw/branch/main/schemas/bambulab/v1/request.schema.json", "title": "BambuRequest", "description": "Matches continuum-proxy's src/printer/bambu_commands::BambuRequest — one JSON key naming the category ('info', 'pushing', ...). Each category's value is a oneOf, not a single $ref: a category can have more than one possible request shape (e.g. 'info' might grow a second command besides get_version) — oneOf leaves room for that from the start instead of needing a rewrite the day it happens.", "type": "object", "minProperties": 1, "maxProperties": 1, "properties": { "info": { "oneOf": [ { "$ref": "request/info/get_version.schema.json" } ] }, "pushing": { "oneOf": [ { "$ref": "request/pushing/pushall.schema.json" } ] } }, "additionalProperties": false }