action atlassian_get_issue_security_schemes { label: "Get issue security schemes" description: "Returns all [issue security schemes](https://confluence.atlassian.com/x/J4lKLg).\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: atlassian method: GET path: "/rest/api/3/issuesecurityschemes" encoding: json output: { type: "object" description: "List of security schemes." properties: { issueSecuritySchemes: { type: "array" description: "List of security schemes." items: { 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 } } } additionalProperties: false } }