---
title: "admGetAllPermissionSchemes"
canonical: "https://support.appfire.com/space/PSJ/15488032/admGetAllPermissionSchemes"
format: markdown
---
> Macro (aura-html)


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | admGetAllPermissionSchemes() | **Package** | adm |
| **Alias** |  | **Pkg Usage** | allPermsSchemes() |

## Description

> Macro (excerpt)
> 
> Returns the list Permission Scheme names that exist in the Jira environment.

Returns the list Permission Scheme names that exist in the Jira environment. 

## Return Type

**String []**

The requested names of all permission schemes.

## Example

```
string[] pSchemes = admGetAllPermissionSchemes();
 for(string pName in pSchemes) {
     runnerLog(pName);
}
```

## See also

> Macro (contentbylabel)