👋 Hey there! I’m Leanne, a Senior Engineer on the Jira team.
We know that managing field configurations can sometimes feel like a game of 3D chess, so we’re making things a lot simpler.From June 2026, we will begin the progressive rollout of Field Schemes, the unified method to manage custom fields. For more information about changes involved in the rollout.
As we move away from Field Configurations and Field Configuration Schemes, the existing public REST APIs will be deprecated. New REST APIs will allow interaction with Field Schemes. The old model uses a two-tier approach: you create Field Configurations (containers for field settings), then Field Configuration Schemes that map work types to those configurations. The new model uses a single-tier Field Scheme that directly holds field associations, per-field parameters, and project assignments.
Old APIs: Issue Field Configurations API Group
New APIs: Field Schemes API Group
Important behavioral differences to watch for:
No more two-tier management: You no longer need to create a field configuration first, then wire it to a scheme. Fields, their parameters, and project assignments are all managed directly on the Field Scheme.
isHidden is replaced by association: Instead of marking a field as "hidden," simply don't associate it with the scheme (or remove it using DELETE /rest/api/3/config/fieldschemes/fields).
Work type mapping → Work type parameters: Instead of creating separate field configurations per work type, use work-type-specific parameter overrides on individual fields.
Bulk operations: The new API favors efficiency—you can update field parameters, field associations, and project associations across multiple schemes in a single request.
|
Concept |
Old Model |
New Model |
|---|---|---|
|
Container for field settings |
Field Configuration — a named group of field items (isHidden, isRequired, description, renderer) |
Field Scheme — a named scheme that directly associates fields with per-field parameters |
|
Work type mapping |
Field Configuration Scheme — maps work types → field configurations Two-tier: create a field config, then create a scheme that maps work types to configs |
Work Type Parameters — per-field overrides keyed by work type (work type), defined inline on the scheme Single-tier: one scheme holds fields, their parameters, work-type overrides, and project associations |
|
Field settings |
FieldConfigurationItem: isHidden, isRequired, description, renderer |
Field Parameters: isRequired, description (with optional work-type-level overrides) |
Conceptual changes to merge Field Configurations and Field Configuration Schemes into a single Field Schemes entity, reducing two-tiered configuration to a single tier where Field Schemes holds all field-related configurations and associations.
|
Legacy use case / API |
New API migration path |
|---|---|
|
List existing field configurations
|
No direct equivalent for field configuration. GET /config/fieldschemes |
|
List field configuration schemes
|
|
|
Create a field configuration
|
No direct equivalent for field configuration. POST /config/fieldschemes |
|
Create a field configuration scheme
|
|
|
Delete a field configuration
|
No direct equivalent for field configuration.No direct equivalent for field configuration. DELETE /config/fieldschemes/{id} |
|
Delete a field configuration scheme
|
|
|
Rename or update a field configuration
|
No direct equivalent for field configuration. PUT /config/fieldschemes/{id} |
|
Rename or update a field configuration scheme
|
1 Delete the migrated scheme, or remove its field associations and parameters.
Here are use cases and how to achieve them today using legacy Field Configurations and Field Configuration Schemes APIs, and how to perform the same actions using the new Field Schemes API
|
Use cases with Legacy API |
New API migration path |
|---|---|
|
Read all fields and configurations for a space |
|
|
|
|
Read all fields and configurations for a space and a work type |
|
|
|
|
Check if certain field is required for a space and a work type |
|
|
|
|
Add fields to a space and all work types |
|
|
|
|
Add fields to a space and specific work types |
|
|
|
|
Make fields required for multiple work types in a space |
|
|
|
|
Remove fields from work types for a project |
|
|
|
|
Remove fields from a space completely |
|
|
|
We want this transition to be as smooth as possible. Here’s how you can stay ahead of the curve:
Audit your scripts: Review any custom integrations or automations using the legacy Field Configuration APIs.
Update to the new model: Start transitioning your logic to the Field Schemes API. This will give you access to bulk operations and a much simpler data model.
Embrace the 404: Once a project migrates to the new architecture, legacy update APIs will return a 404 Not Found. This is a signal that the project has successfully moved to the streamlined Field Scheme model!
Test in a Sandbox: We highly recommend spinning up a sandbox and joining the Open Beta to test your updated scripts in a safe environment.
Thanks for coming on this journey with us! If there’s anything we can clarify, please leave a comment or question below.
Leanne Won
0 comments