Represents the content to redact

interface ContentItem {
    entityId: string;
    entityType: "issuefieldvalue" | "issue-comment" | "issue-worklog";
    id: string;
}

Properties

entityId: string

The ID of the content entity.

  • For redacting an issue field, this will be the field ID (e.g., summary, customfield_10000).
  • For redacting a comment, this will be the comment ID.
  • For redacting a worklog, this will be the worklog ID.
summary
entityType: "issuefieldvalue" | "issue-comment" | "issue-worklog"

The type of the entity to redact; It will be one of the following:

  • issuefieldvalue - To redact in issue fields
  • issue-comment - To redact in issue comments.
  • issue-worklog - To redact in issue worklogs
id: string

This would be the issue ID

10000