action atlassian_get_fields { label: "Get fields" description: "Returns system and custom issue fields according to the following rules:\n\n * Fields that cannot be added to the issue navigator are always returned.\n * Fields that cannot be placed on an issue screen are always returned.\n * Fields that depend on global Jira settings are only returned if the setting is enabled. That is, timetracking fields, subtasks, votes, and watches.\n * For all other fields, this operation only returns the fields that the user has permission to view (that is, the field is used in at least one project that the user has *Browse Projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for.)\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** None." provider: atlassian method: GET path: "/rest/api/3/field" encoding: json output: { type: "array" items: { type: "object" description: "Details about a field." properties: { clauseNames: { type: "array" description: "The names that can be used to reference the field in an advanced search. For more information, see [Advanced searching - fields reference](https://confluence.atlassian.com/x/gwORLQ)." items: { type: "string" } } custom: { type: "boolean" description: "Whether the field is a custom field." } id: { type: "string" description: "The ID of the field." } key: { type: "string" description: "The key of the field." } name: { type: "string" description: "The name of the field." } navigable: { type: "boolean" description: "Whether the field can be used as a column on the issue navigator." } orderable: { type: "boolean" description: "Whether the content of the field can be used to order lists." } schema: { description: "The data schema for the field." type: "object" } scope: { description: "The scope of the field." type: "object" } searchable: { type: "boolean" description: "Whether the content of the field can be searched." } } additionalProperties: false } } }