---
title: "admGetIssueTypeSchemeForProject"
canonical: "https://support.appfire.com/space/PSJC/985989182/admGetIssueTypeSchemeForProject"
format: markdown
---
> Macro (aura-html)


## Description

> Macro (excerpt)
> 
> Returns a specific issue type scheme.

Returns a specific issue type scheme, set on the specified project.

|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | admGetIssueTypeSchemeForProject(pkey) | **Package** | adm |
| **Alias** |  | **Pkg Usage** | issueTypeSchemeForProject(pkey) |

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| pkey | string | Yes | Project key. |

## Return Type

**[JIssueTypeScheme](https://appfire.atlassian.net/wiki/spaces/PSJC/pages/435028065)**

Returns a specific issue type scheme.

## Example

```javascript
JIssueTypeScheme itScheme = admGetIssueTypeSchemeForProject("TT", 11000);
runnerLog("Id: " + itScheme.id);
runnerLog("Name: " + itScheme.name);
runnerLog("Description: " + itScheme.description );
```

## See also

> Macro (contentbylabel)