{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Tree", "title": "Tree", "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "channels": { "type": "array", "items": { "type": "integer" } } }, "x-tags": [ "Models" ] }