{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "ThreadSection": { "description": "An independently persisted, user-visible thread section.", "properties": { "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" } }, "description": "One page of independently persisted thread sections.", "properties": { "data": { "items": { "$ref": "#/definitions/ThreadSection" }, "type": "array" }, "nextCursor": { "description": "Opaque cursor for the next page, or `null` when no sections remain.", "type": [ "string", "null" ] } }, "required": [ "data" ], "title": "ThreadSectionListResponse", "type": "object" }