{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ObjectTreeResponse", "title": "ObjectTreeResponse", "type": "object", "properties": { "data": { "type": "object", "properties": { "type": { "type": "string", "example": "objects" }, "objects": { "type": "array", "items": { "$ref": "#/components/schemas/ObjectNode" } } } } } }