CreateCustomField
Creates a new custom field in Jira, which can then be used in issues, screens, or field configurations.
Input
| Name | Type | Required | Description |
| Name | String | True | The display name of the custom field, shown in the Jira user interface. This is not the technical identifier used internally. |
| Description | String | False | A short description of the custom field, visible in the Jira user interface to help users understand its purpose. |
| Type | String | True | Defines the type of the custom field to be created, such as a group picker or text field. The value should use the full type key format, for example: 'com.atlassian.jira.plugin.system.customfieldtypes:grouppicker'. |
| SearcherKey | String | True | Specifies how the custom field can be searched in Jira. The value should be a valid searcher key, such as 'com.atlassian.jira.plugin.system.customfieldtypes:grouppickersearcher'. |
Result Set Columns
| Name | Type | Description |
| Id | String | The numeric ID that uniquely identifies the newly created custom field in Jira. |
| Key | String | The system-generated key used internally to reference the newly created custom field. |
| Name | String | The name of the custom field as confirmed after creation. |