File size: 527 Bytes
31c9f7d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | {
"name": "get_milestone",
"description": "Retrieve details of a specific milestone by ID or name",
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "Project name, ID, or slug"
},
"query": {
"type": "string",
"description": "Milestone name or ID"
}
},
"required": [
"project",
"query"
],
"additionalProperties": false
}
} |