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>
30 lines
681 B
Plaintext
30 lines
681 B
Plaintext
{
|
|
"annotations": {
|
|
"readOnlyHint": true,
|
|
"title": "Get code scanning alert"
|
|
},
|
|
"description": "Get details of a specific code scanning alert in a GitHub repository.",
|
|
"inputSchema": {
|
|
"properties": {
|
|
"alertNumber": {
|
|
"description": "The number of the alert.",
|
|
"type": "number"
|
|
},
|
|
"owner": {
|
|
"description": "The owner of the repository.",
|
|
"type": "string"
|
|
},
|
|
"repo": {
|
|
"description": "The name of the repository.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"owner",
|
|
"repo",
|
|
"alertNumber"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"name": "get_code_scanning_alert"
|
|
} |