create_jira_issue
Create a new issue in a Jira project by specifying project key, issue type, and summary. Optionally add description, priority, assignee, labels, components, or custom fields.
Instructions
Creates a new issue in a Jira project. You must specify the project, issue type, and a summary. Other fields like description, priority, and assignee are optional.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| labels | No | A list of labels to add to the new issue. | |
| summary | Yes | A concise summary or title for the issue. | |
| assignee | No | The Atlassian account ID of the user to whom the issue should be assigned. | |
| priority | No | The priority level for the issue (e.g., "High", "Medium", "Low"). Must be a valid priority in the project. | |
| issueType | Yes | The name of the issue type (e.g., "Bug", "Task", "Story"). This must be a valid issue type in the specified project. | |
| components | No | A list of component names to associate with the new issue. | |
| projectKey | Yes | The key of the project in which the issue will be created (e.g., "PROJ"). | |
| description | No | A detailed description of the issue. Optional. | |
| customFields | No | A JSON object for setting custom fields. The keys are the custom field IDs (e.g., "customfield_10010") and the values are the data to be set. **For example: `{"customfield_10010": "Value for custom field"}`**. |