Interface UserContributionMetricsParams

Contribution request for one or more Jira usernames/user keys.

interface UserContributionMetricsParams {
    concurrency?: number;
    from?: string;
    include?: UserContributionMetric[];
    jql?: string;
    projects?: string[];
    to?: string;
    validateQuery?: boolean;
}

Hierarchy (View Summary)

Properties

concurrency?: number

Optional maximum number of concurrent count requests

from?: string

Lower date bound accepted by Jira JQL, e.g. '-30d' or '2026-06-01'

Dimensions to include. Defaults to all lightweight dimensions.

jql?: string

Additional JQL combined with generated metric clauses using AND

projects?: string[]

Project keys or IDs to restrict the metric to

to?: string

Upper date bound accepted by Jira JQL, e.g. '2026-06-30'

validateQuery?: boolean

Whether Jira should validate each generated JQL query