changedInput schema / properties / comments / items / description
Previous value: -"One comment to create via ``create_document_comments``.\n\n``parent_comment_id`` is the short ID from ``list_document_comments``\n(omit for top-level); the tool composes the full path internally.\nOmit ``author_id`` to default to the authenticated token's user;\nomit ``resolved`` to let Polarion default to False."New value: +"One comment to create via ``create_document_comments``."
removedInput schema / properties / comments / items / properties / author_id / description
Removed value: -"Author user ID."
removedInput schema / properties / comments / items / properties / parent_comment_id / description
Removed value: -"Short comment ID for replies; omit for top-level."
removedInput schema / properties / comments / items / properties / resolved / description
Removed value: -"Initial resolved state."
removedInput schema / properties / comments / items / properties / text / description
Removed value: -"Comment body text."
removedInput schema / properties / comments / items / properties / text_format / description
Removed value: -"MIME type of ``text``."
removedOutput schema / $defs
Removed value: -{
- "JsonValue": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "integer"
- },
- {
- "type": "number"
- },
- {
- "type": "boolean"
- },
- {
- "items": {
- "$ref": "#/$defs/JsonValue"
- },
- "type": "array"
- },
- {
- "additionalProperties": {
- "$ref": "#/$defs/JsonValue"
- },
- "type": "object"
- },
- {
- "type": "null"
- }
- ]
- }
-}
removedOutput schema / properties / comment_ids / description
Removed value: -"Short IDs in Polarion's return order; empty on dry-run."
removedOutput schema / properties / created / description
Removed value: -"True on a real create; False on dry-run."
removedOutput schema / properties / dry_run / description
Removed value: -"Whether this was a dry-run."
changedOutput schema / properties / payload_preview / anyOf
Previous value: -[
- {
- "additionalProperties": {
- "$ref": "#/$defs/JsonValue"
- },
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
removedOutput schema / properties / payload_preview / description
Removed value: -"JSON:API payload sent or previewed; None after real ops."