action jira_get_all_field_configuration_schemes { label: "Get all field configuration schemes" description: "Deprecated, use [ Field schemes](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-field-schemes/#api-group-field-schemes) which supports field association schemes.\n\nReturns a [paginated](#pagination) list of field configuration schemes.\n\nOnly field configuration schemes used in classic projects are returned.\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: jira method: GET path: "/rest/api/3/fieldconfigurationscheme" encoding: json input: { type: "object" properties: { id: { type: "array" items: { type: "integer" format: "int64" } } maxResults: { type: "integer" format: "int32" } startAt: { type: "integer" format: "int64" } } additionalProperties: false } output: { type: "object" description: "A page of items." properties: { isLast: { type: "boolean" description: "Whether this is the last page." } maxResults: { type: "integer" format: "int32" description: "The maximum number of items that could be returned." } nextPage: { type: "string" format: "uri" description: "If there is another page of results, the URL of the next page." } self: { type: "string" format: "uri" description: "The URL of the page." } startAt: { type: "integer" format: "int64" description: "The index of the first item returned." } total: { type: "integer" format: "int64" description: "The number of items returned." } values: { type: "array" description: "The list of items." items: { type: "object" description: "Details of a field configuration scheme." required: ["id", "name"] properties: { description: { type: "string" description: "The description of the field configuration scheme." } id: { type: "string" description: "The ID of the field configuration scheme." } name: { type: "string" description: "The name of the field configuration scheme." } } additionalProperties: false } } } additionalProperties: false } }