action atlassian_get_accessible_project_type_by_key { label: "Get accessible project type by key" description: "Returns a [project type](https://confluence.atlassian.com/x/Var1Nw) if it is accessible to the user.\n\n**[Permissions](#permissions) required:** Permission to access Jira." provider: atlassian method: GET path: "/rest/api/3/project/type/{projectTypeKey}/accessible" encoding: json input: { type: "object" properties: { projectTypeKey: { type: "string" enum: ["software", "service_desk", "business", "product_discovery"] } } required: ["projectTypeKey"] additionalProperties: false } output: { 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 } }