changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "TopicAuthor": {
+ "description": "Author of a topic or reply.",
+ "properties": {
+ "avatar": {
+ "description": "Avatar URL.",
+ "type": "string"
+ },
+ "member_id": {
+ "description": "Member ID.",
+ "type": "string"
+ },
+ "name": {
+ "description": "Display name.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "member_id",
+ "name",
+ "avatar"
+ ],
+ "type": "object"
+ },
+ "TopicImage": {
+ "description": "An image attached to a topic or reply.",
+ "properties": {
+ "lg": {
+ "description": "Large image URL.",
+ "type": "string"
+ },
+ "sm": {
+ "description": "Small thumbnail URL.",
+ "type": "string"
+ },
+ "url": {
+ "description": "Original image URL.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "sm",
+ "lg"
+ ],
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `topic_create_reply`. The created reply.\n\nSDK-typed (`longbridge::content::TopicReply`) and serialized via `tool_json`.\n`created_at` is emitted as an RFC3339 string.",
+ "properties": {
+ "author": {
+ "$ref": "#/$defs/TopicAuthor",
+ "description": "Reply author."
+ },
+ "body": {
+ "description": "Reply body (plain text).",
+ "type": "string"
+ },
+ "comments_count": {
+ "description": "Nested replies count.",
+ "format": "int32",
+ "type": "integer"
+ },
+ "created_at": {
+ "description": "Created time (RFC3339).",
+ "type": "string"
+ },
+ "id": {
+ "description": "Reply ID.",
+ "type": "string"
+ },
+ "images": {
+ "description": "Attached images.",
+ "items": {
+ "$ref": "#/$defs/TopicImage"
+ },
+ "type": "array"
+ },
+ "likes_count": {
+ "description": "Likes count.",
+ "format": "int32",
+ "type": "integer"
+ },
+ "reply_to_id": {
+ "description": "Parent reply ID (`\"0\"` means top-level).",
+ "type": "string"
+ },
+ "topic_id": {
+ "description": "Topic ID this reply belongs to.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "topic_id",
+ "body",
+ "reply_to_id",
+ "author",
+ "images",
+ "likes_count",
+ "comments_count",
+ "created_at"
+ ],
+ "title": "TopicCreateReplyResponse",
+ "type": "object"
+}