An association type referencing issues in Jira.

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

Hierarchy

  • Record<string, unknown>
    • IssueIdOrKeysAssociation

Properties

associationType: "issueKeys" | "issueIdOrKeys"

Defines the association type.

issueIdOrKeys
values: string[]

The Jira issue keys or IDs to associate the entity with.

The number of values counted across all associationTypes must not exceed a limit of 500.