{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "ThreadSection": { "description": "An independently persisted, user-visible thread section.", "properties": { "appearance": { "anyOf": [ { "$ref": "#/definitions/ThreadSectionAppearance" }, { "type": "null" } ], "default": null, "description": "Optional appearance synchronized across clients." }, "id": { "description": "Opaque UUIDv7 identity that remains stable when the section is renamed.", "type": "string" }, "name": { "description": "The current user-visible section name.", "type": "string" } }, "required": [ "id", "name" ], "type": "object" }, "ThreadSectionAppearance": { "description": "Extensible visual presentation for a custom thread section.", "properties": { "color": { "type": [ "string", "null" ] }, "icon": { "type": [ "string", "null" ] } }, "type": "object" } }, "description": "The independently persisted section created by the server.", "properties": { "section": { "$ref": "#/definitions/ThreadSection" } }, "required": [ "section" ], "title": "ThreadSectionCreateResponse", "type": "object" }