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

    Interface CreatePriorityScheme

    Details of a new priority scheme

    interface CreatePriorityScheme {
        defaultPriorityId: number;
        description?: string;
        mappings?: Version2Models.PriorityMapping;
        name: string;
        priorityIds: number[];
        projectIds?: number[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    defaultPriorityId: number

    The ID of the default priority for the priority scheme.

    description?: string

    The description of the priority scheme.

    name: string

    The name of the priority scheme. Must be unique.

    priorityIds: number[]

    The IDs of priorities in the scheme.

    projectIds?: number[]

    The IDs of projects that will use the priority scheme.