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>
25 lines
599 B
Plaintext
25 lines
599 B
Plaintext
{
|
|
"annotations": {
|
|
"readOnlyHint": true,
|
|
"title": "Get team members"
|
|
},
|
|
"description": "Get member usernames of a specific team in an organization. Limited to organizations accessible with current credentials",
|
|
"inputSchema": {
|
|
"properties": {
|
|
"org": {
|
|
"description": "Organization login (owner) that contains the team.",
|
|
"type": "string"
|
|
},
|
|
"team_slug": {
|
|
"description": "Team slug",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"org",
|
|
"team_slug"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"name": "get_team_members"
|
|
} |