list_project_columns
Retrieve and organize project columns by providing a project ID from GitHub. Specify pagination parameters to manage large datasets effectively.
Instructions
List columns for a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number of the results | |
per_page | No | Results per page (max 100) | |
project_id | Yes | The ID of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "Page number of the results",
"type": "number"
},
"per_page": {
"description": "Results per page (max 100)",
"type": "number"
},
"project_id": {
"description": "The ID of the project",
"type": "number"
}
},
"required": [
"project_id"
],
"type": "object"
}