Jira.js - Jira Cloud API library
    Preparing search index...

    Interface GetPrioritySchemes

    interface GetPrioritySchemes {
        expand?: string | string[] | ("projects" | "priorities")[];
        maxResults?: number;
        onlyDefault?: boolean;
        orderBy?: string;
        priorityId?: number[];
        schemeId?: number[];
        schemeName?: string;
        startAt?: number;
    }
    Index

    Properties

    expand?: string | string[] | ("projects" | "priorities")[]

    A comma separated list of additional information to return.

    • priorities will return priorities associated with the priority scheme.
    • projects will return projects associated with the priority scheme.
    expand: ['priorities', 'projects'].
    
    maxResults?: number

    The maximum number of items to return per page.

    onlyDefault?: boolean

    Whether only the default priority is returned.

    orderBy?: string

    The ordering to return the priority schemes by.

    priorityId?: number[]

    A set of priority IDs to filter by. To include multiple IDs, provide an ampersand-separated list. For example, priorityId=10000&priorityId=10001.

    schemeId?: number[]

    A set of priority scheme IDs. To include multiple IDs, provide an ampersand-separated list. For example, schemeId=10000&schemeId=10001.

    schemeName?: string

    The name of scheme to search for.

    startAt?: number

    The index of the first item to return in a page of results (page offset).