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


## Description

> Macro (excerpt)
> 
> Retrieves a specific field configuration scheme.

Retrieves a specific field configuration scheme.

|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | admGetFieldConfigScheme(name, id) | **Package** | adm |
| **Alias** |  | **Pkg Usage** | fieldConfigScheme(name, id) |

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| name | string | Yes | The name of the scheme. |
| id | integer | Yes | The ID of the scheme. |

## Return Type

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

## Example

```javascript
JFieldConfigurationScheme fcScheme = admGetfieldConfigScheme("Default Field Config Scheme", 11000);
runnerLog("Id: " + fcScheme.id);
runnerLog("Name: " + fcScheme.name);
runnerLog("Description: " + fcScheme.description );
```

## See also

> Macro (contentbylabel)