action atlassian_get_project_issue_security_scheme { label: "Get project issue security scheme" description: "Returns the [issue security scheme](https://confluence.atlassian.com/x/J4lKLg) associated with the project.\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg) or the *Administer Projects* [project permission](https://confluence.atlassian.com/x/yodKLg)." provider: atlassian method: GET path: "/rest/api/3/project/{projectKeyOrId}/issuesecuritylevelscheme" encoding: json input: { type: "object" properties: { projectKeyOrId: { type: "string" } } required: ["projectKeyOrId"] additionalProperties: false } output: { type: "object" description: "Details about a security scheme." properties: { defaultSecurityLevelId: { type: "integer" format: "int64" description: "The ID of the default security level." } description: { type: "string" description: "The description of the issue security scheme." } id: { type: "integer" format: "int64" description: "The ID of the issue security scheme." } levels: { type: "array" items: { type: "object" description: "Details of an issue level security item." properties: { description: { type: "string" description: "The description of the issue level security item." } id: { type: "string" description: "The ID of the issue level security item." } isDefault: { type: "boolean" description: "Whether the issue level security item is the default." } issueSecuritySchemeId: { type: "string" description: "The ID of the issue level security scheme." } name: { type: "string" description: "The name of the issue level security item." } self: { type: "string" description: "The URL of the issue level security item." } } additionalProperties: false } } name: { type: "string" description: "The name of the issue security scheme." } self: { type: "string" description: "The URL of the issue security scheme." } } additionalProperties: false } }