changedOutput schema / properties / comment_count / description
Previous value: -"评论总数"New value: +"整篇笔记的总评论数,含一级评论与回复;不是当前页 items 数量"
removedOutput schema / properties / items / items / properties / author / properties / avatar
Removed value: -{
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "作者头像;当前不可用时为 null"
-}
addedOutput schema / properties / items / items / properties / author / properties / avatar_url
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "作者头像链接;当前不可用时为 null"
+}
removedOutput schema / properties / items / items / properties / author / properties / id
Removed value: -{
- "description": "作者 ID",
- "type": "string"
-}
addedOutput schema / properties / items / items / properties / author / properties / profile_url
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "作者主页链接;当前不可用时为 null"
+}
addedOutput schema / properties / items / items / properties / author / properties / red_id
Added value: +{
+ "description": "作者公开小红书号;当前不可用时为空字符串",
+ "type": "string"
+}
addedOutput schema / properties / items / items / properties / author / properties / user_id
Added value: +{
+ "description": "作者 user_id",
+ "type": "string"
+}
changedOutput schema / properties / items / items / properties / author / required
Previous value: -[
- "id",
- "name"
-]New value: +[
+ "user_id",
+ "name",
+ "avatar_url",
+ "profile_url",
+ "red_id"
+]
addedOutput schema / properties / items / items / properties / content_type
Added value: +{
+ "description": "评论内容类型,可选:text(文字)、image(图片)、voice(语音)",
+ "enum": [
+ "text",
+ "image",
+ "voice"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / items / items / properties / image_items
Added value: +{
+ "description": "评论图片列表;无图片时为空数组",
+ "items": {
+ "properties": {
+ "image_url": {
+ "description": "评论图片链接",
+ "type": "string"
+ }
+ },
+ "required": [
+ "image_url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
addedOutput schema / properties / items / items / properties / is_author_comment
Added value: +{
+ "description": "是否为笔记作者本人发布的评论",
+ "type": "boolean"
+}
addedOutput schema / properties / items / items / properties / mentioned_users
Added value: +{
+ "description": "评论正文中 @ 到的用户列表;无 @ 时为空数组",
+ "items": {
+ "properties": {
+ "name": {
+ "description": "被 @ 用户名称;当前不可用时为空字符串",
+ "type": "string"
+ },
+ "user_id": {
+ "description": "被 @ 用户的 user_id;当前不可用时为空字符串",
+ "type": "string"
+ }
+ },
+ "required": [
+ "user_id",
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
removedOutput schema / properties / items / items / properties / parent_comment_id / default
Removed value: -null
addedOutput schema / properties / items / items / properties / voice_duration_seconds
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "语音评论时长,单位秒;非语音评论或上游未提供时为 null"
+}
changedOutput schema / properties / items / items / required
Previous value: -[
- "comment_id",
- "note_id",
- "content",
- "publish_time",
- "like_count",
- "reply_count",
- "is_pinned",
- "ip_location",
- "author"
-]New value: +[
+ "comment_id",
+ "note_id",
+ "content",
+ "content_type",
+ "image_items",
+ "voice_duration_seconds",
+ "mentioned_users",
+ "publish_time",
+ "like_count",
+ "reply_count",
+ "parent_comment_id",
+ "is_pinned",
+ "is_author_comment",
+ "ip_location",
+ "author"
+]
addedOutput schema / properties / top_level_comment_count
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "整篇笔记的一级评论总数,不含回复;不是当前页 items 数量。当前数据源未提供时为 null"
+}
changedOutput schema / required
Previous value: -[
- "items",
- "next_page_token",
- "comment_count"
-]New value: +[
+ "items",
+ "next_page_token",
+ "comment_count",
+ "top_level_comment_count"
+]