action atlassian_get_all_accessible_project_types { label: "Get licensed project types" description: "Returns all [project types](https://confluence.atlassian.com/x/Var1Nw) with a valid license." provider: atlassian method: GET path: "/rest/api/3/project/type/accessible" 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 } } }