088560113c
* Add get project fields tool * Data types * Docs * Update projectNumber's type * Add list_project_items tool * Add get_project_item tool * Return minimal project * Remove unused per_page
39 lines
938 B
Plaintext
39 lines
938 B
Plaintext
{
|
|
"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"
|
|
} |