action jira_get_available_priorities_by_priority_scheme { label: "Get available priorities by priority scheme" description: "Returns a [paginated](#pagination) list of priorities available for adding to a priority scheme.\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: jira method: GET path: "/rest/api/3/priorityscheme/priorities/available" encoding: json input: { type: "object" properties: { exclude: { type: "array" items: { type: "string" } } maxResults: { type: "string" } query: { type: "string" } schemeId: { type: "string" } startAt: { type: "string" } } required: ["schemeId"] additionalProperties: false } output: { type: "object" description: "A page of items." properties: { isLast: { type: "boolean" description: "Whether this is the last page." } maxResults: { type: "integer" format: "int32" description: "The maximum number of items that could be returned." } nextPage: { type: "string" format: "uri" description: "If there is another page of results, the URL of the next page." } self: { type: "string" format: "uri" description: "The URL of the page." } startAt: { type: "integer" format: "int64" description: "The index of the first item returned." } total: { type: "integer" format: "int64" description: "The number of items returned." } values: { type: "array" description: "The list of items." items: { type: "object" description: "An issue priority with sequence information." properties: { description: { type: "string" description: "The description of the issue priority." } iconUrl: { type: "string" description: "The URL of the icon for the issue priority." } id: { type: "string" description: "The ID of the issue priority." } isDefault: { type: "boolean" description: "Whether this priority is the default." } name: { type: "string" description: "The name of the issue priority." } self: { type: "string" description: "The URL of the issue priority." } sequence: { type: "string" description: "The sequence of the issue priority." } statusColor: { type: "string" description: "The color used to indicate the issue priority." } } additionalProperties: false } } } additionalProperties: false } }