jira_delete_worklog
Remove a specific worklog entry from a JIRA issue by providing the issue key and worklog ID, ensuring accurate issue time tracking and management.
Instructions
Delete a worklog entry from an issue
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| issueKey | Yes | ||
| worklogId | Yes | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "issueKey": {
      "pattern": "^[A-Z]+-\\d+$",
      "type": "string"
    },
    "worklogId": {
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "issueKey",
    "worklogId"
  ],
  "type": "object"
}