jira_get_sprints
Retrieve all sprints for a specific JIRA board, filtered by state (future, active, closed), with pagination support for efficient data management.
Instructions
Get all sprints for a specific JIRA board with filtering by state
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | ||
maxResults | No | ||
startAt | No | ||
state | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"minimum": 1,
"type": "integer"
},
"maxResults": {
"default": 50,
"maximum": 50,
"minimum": 1,
"type": "integer"
},
"startAt": {
"default": 0,
"minimum": 0,
"type": "integer"
},
"state": {
"enum": [
"future",
"active",
"closed"
],
"type": "string"
}
},
"required": [
"boardId"
],
"type": "object"
}