File size: 1,086 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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | {
"name": "save_milestone",
"description": "Create or update a milestone in a Linear project. If `id` is provided, updates the existing milestone; otherwise creates a new one. When creating, `name` is required.",
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "Project name, ID, or slug"
},
"id": {
"description": "Milestone name or ID",
"type": "string"
},
"name": {
"description": "Milestone name (required when creating)",
"type": "string"
},
"description": {
"description": "Milestone description",
"type": "string"
},
"targetDate": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Target completion date (ISO format, null to remove)"
}
},
"required": [
"project"
],
"additionalProperties": false
}
} |