action atlassian_get_issue_security_scheme { label: "Get issue security scheme" description: "Returns an issue security scheme along with its security levels.\n\n**[Permissions](#permissions) required:**\n\n * *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg).\n * *Administer Projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for a project that uses the requested issue security scheme." provider: atlassian method: GET path: "/rest/api/3/issuesecurityschemes/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] 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 } }