changedInput schema / properties / id / description
Previous value: -"Comment ID to update instead of creating a new one."New value: +"Comment ID to update instead of creating a new one. Not the comment you're replying to — that's `parentCommentId`."
addedInput schema / properties / id / exclusiveMinimum
Added value: +0
removedInput schema / properties / id / minimum
Removed value: --2147483648
changedInput schema / properties / parentCommentId / description
Previous value: -"Reply to this specific comment instead of posting top-level (from get_thread_comments). The reply then appears nested under that comment's `childComments` in get_thread_comments, not as a new top-level entry."New value: +"Reply to this specific comment instead of posting top-level (from get_thread_comments). The reply then appears nested under that comment's `childComments` in get_thread_comments, not as a new top-level entry. Not the comment being edited — that's `id`."
addedInput schema / properties / parentCommentId / exclusiveMinimum
Added value: +0
removedInput schema / properties / parentCommentId / minimum
Removed value: --2147483648
addedInput schema / properties / threadId / exclusiveMinimum
Added value: +0
removedInput schema / properties / threadId / minimum
Removed value: --2147483648
addedOutput schema / properties / comment / properties / id / exclusiveMinimum
Added value: +0
changedOutput schema / properties / comment / properties / id / maximum
Previous value: -9007199254740991New value: +2147483647
removedOutput schema / properties / comment / properties / id / minimum
Removed value: --9007199254740991
changedOutput schema / properties / comment / properties / likeCount / anyOf
Previous value: -[
- {
- "maximum": 9007199254740991,
- "minimum": -9007199254740991,
- "type": "integer"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / comment / properties / siteUrl / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "format": "uri",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]