IssueKeysAssociation

An association type referencing issues in Jira.

{
"associationType": "issueKeys",
"values": [
"ABC-123",
"ABC-456"
]
}
interface IssueKeysAssociation {
    associationType: "issueKeys";
    values: string[];
}

Hierarchy

  • Record<string, unknown>
    • IssueKeysAssociation

Properties

associationType

Defines the asssociation type.

issueKeys
values: string[]

The Jira issue keys to associate the Remote Link information with.

The number of values counted across all associationTypes (issueKeys, issueIdOrKeys and serviceIdOrKeys) must not exceed a limit of 500.