jira_get_issue_comments
Retrieve and filter comments for a specific JIRA issue by author, date range, or order, with configurable quantity and internal comment inclusion.
Instructions
Retrieves comments for a specific JIRA issue with configurable quantity and filtering options
Input Schema
Name | Required | Description | Default |
---|---|---|---|
authorFilter | No | ||
dateRange | No | ||
includeInternal | No | ||
issueKey | Yes | ||
maxComments | No | ||
orderBy | No | created |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"authorFilter": {
"minLength": 1,
"type": "string"
},
"dateRange": {
"additionalProperties": false,
"properties": {
"from": {
"format": "date-time",
"type": "string"
},
"to": {
"format": "date-time",
"type": "string"
}
},
"type": "object"
},
"includeInternal": {
"default": false,
"type": "boolean"
},
"issueKey": {
"pattern": "^[A-Z]+-\\d+$",
"type": "string"
},
"maxComments": {
"default": 10,
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"orderBy": {
"default": "created",
"enum": [
"created",
"updated"
],
"type": "string"
}
},
"required": [
"issueKey"
],
"type": "object"
}