Configuration Filesintermediate

Feature Flags JSON Example

A practical feature flag structure with staged rollout percentages and audience controls.

Real-world use case: Use this for release management, staged rollouts, and experimentation systems.
1{
2 "checkoutRedesign": {
3 "enabled": true,
4 "rolloutPercentage": 25
5 },
6 "smartSearch": {
7 "enabled": false,
8 "audiences": [
9 "internal",
10 "beta-testers"
11 ]
12 },
13 "supportChat": {

Where this shape shows up in production

Feature delivery
Experimentation
Ops toggles

Related examples