addedOutput schema / properties / points
Added value: +{
+ "additionalProperties": false,
+ "description": "本次成功调用的积分消耗与调用完成时的账户积分余额。",
+ "properties": {
+ "balance": {
+ "description": "本次接口完成时看到的当前积分余额。",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "cost": {
+ "description": "本次请求最终确认消耗的积分。",
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "cost",
+ "balance"
+ ],
+ "type": "object"
+}
changedOutput schema / required
Previous value: -[
- "user_id",
- "name",
- "avatar_url",
- "profile_url",
- "red_id",
- "bio",
- "verified",
- "verification_category",
- "is_professional_account",
- "verification_name",
- "is_enterprise_account",
- "profile_tags",
- "follower_count",
- "following_count",
- "posted_note_count",
- "received_like_count",
- "received_collect_count",
- "ip_location"
-]New value: +[
+ "user_id",
+ "name",
+ "avatar_url",
+ "profile_url",
+ "red_id",
+ "bio",
+ "verified",
+ "verification_category",
+ "is_professional_account",
+ "verification_name",
+ "is_enterprise_account",
+ "profile_tags",
+ "follower_count",
+ "following_count",
+ "posted_note_count",
+ "received_like_count",
+ "received_collect_count",
+ "ip_location",
+ "points"
+]