list_project_columns
Retrieve all columns in a specified GitHub project with pagination support. Use this tool to organize and manage project tasks effectively by viewing column structures.
Instructions
List all columns in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number for pagination (starts at 1) | |
per_page | No | Number of results per page (max 100) | |
project_id | Yes | The unique identifier of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "Page number for pagination (starts at 1)",
"type": "number"
},
"per_page": {
"description": "Number of results per page (max 100)",
"type": "number"
},
"project_id": {
"description": "The unique identifier of the project",
"type": "number"
}
},
"required": [
"project_id"
],
"type": "object"
}