> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Fields

Returns a list of fields for Classic Jira projects.

<Note>
  External Documentation

  To learn more, visit the [Jira documentation](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-fields/#api-rest-api-3-field-search-get).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                                                                               |
  | --------- | ----------------------------------------------------------------------------------------- |
  | Query     | String used to perform a case-insensitive partial match with field names or descriptions. |
  | Type      | The type of fields to search.                                                             |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                               |
  | --------- | ------------------------------------------------------------------------- |
  | Limit     | The maximum number of items to return per page.                           |
  | Offset    | The index of the first item to return in a page of results (page offset). |
</div>

## Example Output

```json theme={"dark"}
{
	"isLast": false,
	"maxResults": 50,
	"startAt": 0,
	"total": 2,
	"values": [
		{
			"contextsCount": 2,
			"description": "Contains users needed for approval. This custom field was created by Jira Service Desk.",
			"id": "customfield_10000",
			"isLocked": true,
			"key": "customfield_10000",
			"lastUsed": {
				"type": "TRACKED",
				"value": "2019-09-12T10:10:00.559+0000"
			},
			"name": "Approvers",
			"schema": {
				"custom": "com.atlassian.jira.plugin.system.customfieldtypes:multiuserpicker",
				"customId": 10000,
				"items": "user",
				"type": "array"
			},
			"screensCount": 2,
			"searcherKey": "com.atlassian.jira.plugin.system.customfieldtypes:userpickergroupsearcher"
		},
		{
			"contextsCount": 2,
			"description": "Choose the reason for the change request",
			"id": "customfield_10001",
			"isLocked": false,
			"key": "customfield_10001",
			"lastUsed": {
				"type": "NOT_TRACKED"
			},
			"name": "Change reason",
			"schema": {
				"custom": "com.atlassian.jira.plugin.system.customfieldtypes:select",
				"customId": 10001,
				"type": "option"
			},
			"screensCount": 2,
			"searcherKey": "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher"
		}
	]
}
```

## Workflow Library Example

[Search Fields with Jira and Send Results Via Email](https://library.blinkops.com/workflows/search-fields-with-jira-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/search-fields-with-jira-and-send-results-via-email/canvas" />
</div>
