You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Set issue field values for an issue. Fields are organization-level custom fields (text, number, date, or single select). Use this to create or update field values on an issue.",
8
+
"inputSchema": {
9
+
"properties": {
10
+
"fields": {
11
+
"description": "Array of issue field values to set. Each element must have a 'field_id' (string, the GraphQL node ID of the field) and exactly one value field: 'text_value' for text fields, 'number_value' for number fields, 'date_value' (ISO 8601 date string) for date fields, or 'single_select_option_id' (the GraphQL node ID of the option) for single select fields. Set 'delete' to true to remove a field value.",
12
+
"items": {
13
+
"properties": {
14
+
"date_value": {
15
+
"description": "The value to set for a date field (ISO 8601 date string)",
16
+
"type": "string"
17
+
},
18
+
"delete": {
19
+
"description": "Set to true to delete this field value",
20
+
"type": "boolean"
21
+
},
22
+
"field_id": {
23
+
"description": "The GraphQL node ID of the issue field",
24
+
"type": "string"
25
+
},
26
+
"number_value": {
27
+
"description": "The value to set for a number field",
28
+
"type": "number"
29
+
},
30
+
"single_select_option_id": {
31
+
"description": "The GraphQL node ID of the option to set for a single select field",
32
+
"type": "string"
33
+
},
34
+
"text_value": {
35
+
"description": "The value to set for a text field",
36
+
"type": "string"
37
+
}
38
+
},
39
+
"required": [
40
+
"field_id"
41
+
],
42
+
"type": "object"
43
+
},
44
+
"minItems": 1,
45
+
"type": "array"
46
+
},
47
+
"issue_number": {
48
+
"description": "The issue number to update",
49
+
"minimum": 1,
50
+
"type": "number"
51
+
},
52
+
"owner": {
53
+
"description": "Repository owner (username or organization)",
0 commit comments