action jira_get_all_project_types { label: "Get all project types" description: "Returns all [project types](https://confluence.atlassian.com/x/Var1Nw), whether or not the instance has a valid license for each type.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** None." provider: jira method: GET path: "/rest/api/3/project/type" encoding: json output: { type: "array" items: { type: "object" description: "Details about a project type." properties: { color: { type: "string" description: "The color of the project type." } descriptionI18nKey: { type: "string" description: "The key of the project type's description." } formattedKey: { type: "string" description: "The formatted key of the project type." } icon: { type: "string" description: "The icon of the project type." } key: { type: "string" description: "The key of the project type." } } additionalProperties: false } } }