87a1110c15
Sort all JSON object keys alphabetically at every level in toolsnaps by unmarshaling and remarshaling. This leverages Go's built-in behavior where json.Marshal automatically sorts map keys alphabetically, ensuring consistent field ordering and eliminating noop churn in diffs. Co-authored-by: SamMorrowDrums <4811358+SamMorrowDrums@users.noreply.github.com>
29 lines
733 B
Plaintext
29 lines
733 B
Plaintext
{
|
|
"annotations": {
|
|
"title": "Manage notification subscription"
|
|
},
|
|
"description": "Manage a notification subscription: ignore, watch, or delete a notification thread subscription.",
|
|
"inputSchema": {
|
|
"properties": {
|
|
"action": {
|
|
"description": "Action to perform: ignore, watch, or delete the notification subscription.",
|
|
"enum": [
|
|
"ignore",
|
|
"watch",
|
|
"delete"
|
|
],
|
|
"type": "string"
|
|
},
|
|
"notificationID": {
|
|
"description": "The ID of the notification thread.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"notificationID",
|
|
"action"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"name": "manage_notification_subscription"
|
|
} |