action jira_get_all_project_categories { label: "Get all project categories" description: "Returns all project categories.\n\n**[Permissions](#permissions) required:** Permission to access Jira." provider: jira method: GET path: "/rest/api/3/projectCategory" encoding: json output: { type: "array" items: { type: "object" description: "A project category." properties: { description: { type: "string" description: "The description of the project category." } id: { type: "string" description: "The ID of the project category." } name: { type: "string" description: "The name of the project category. Required on create, optional on update." } self: { type: "string" format: "uri" description: "The URL of the project category." } } additionalProperties: false } } }