-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Expand file tree
/
Copy pathget_project_field.snap
More file actions
39 lines (39 loc) · 938 Bytes
/
get_project_field.snap
File metadata and controls
39 lines (39 loc) · 938 Bytes
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
{
"annotations": {
"title": "Get project field",
"readOnlyHint": true
},
"description": "Get Project field for a user or org",
"inputSchema": {
"properties": {
"field_id": {
"description": "The field's id.",
"type": "number"
},
"owner": {
"description": "If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive.",
"type": "string"
},
"owner_type": {
"description": "Owner type",
"enum": [
"user",
"org"
],
"type": "string"
},
"project_number": {
"description": "The project's number.",
"type": "number"
}
},
"required": [
"owner_type",
"owner",
"project_number",
"field_id"
],
"type": "object"
},
"name": "get_project_field"
}