addedOutput schema / properties / items / items / properties / images
Added value: +{
+ "description": "图片列表,包含链接及宽高;无图时为空数组。",
+ "items": {
+ "properties": {
+ "height": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "图片高度,像素;不可用时为 null。"
+ },
+ "url": {
+ "description": "图片链接。",
+ "type": "string"
+ },
+ "width": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "图片宽度,像素;不可用时为 null。"
+ }
+ },
+ "required": [
+ "url",
+ "width",
+ "height"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
changedOutput schema / properties / items / items / required
Previous value: -[
- "post_id",
- "content",
- "publish_time",
- "post_url",
- "like_count",
- "comment_count",
- "repost_count",
- "play_count",
- "image_urls",
- "topic_tags",
- "author"
-]New value: +[
+ "post_id",
+ "content",
+ "publish_time",
+ "post_url",
+ "like_count",
+ "comment_count",
+ "repost_count",
+ "play_count",
+ "image_urls",
+ "images",
+ "topic_tags",
+ "author"
+]