Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions website/docs/main-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ A _Feature Flag_ is a _Setting_ of type Bool.
| Whole Number | Integer | Any whole number within the range of `Int32`. |
| Decimal Number | Double | Any decimal number within the range of `double`. |

#### JSON validation for text settings

For text settings, there is an additional option to require setting values to be valid JSON. When turned on, ConfigCat will only allow valid JSON values to be entered.

However, please note that this means validation only. Your application will still get a string value, and you will need to parse it into JSON manually if necessary.

### Free-form values vs predefined variations

ConfigCat supports two value-modes for feature flags:
Expand Down
12 changes: 12 additions & 0 deletions website/docs/news.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ Here, you'll find all the latest updates, enhancements, and new features we've a

{/* This page must be in sync with the news page on the Dashboard: https://github.com/configcat/app/blob/master/src/app/home-module/news/news.component.html */}

## JSON validation for text settings

#### Jul 15, 2026

We implemented a new option for text settings that allows you to **require valid JSON values**.

This can be turned on for newly created text settings, and for existing ones as well, in the **Edit feature flag** dialog.

When enabled, ConfigCat validates setting values before saving, ensuring that no invalid JSON is published.

---

## Feature Flags for Startups: Meet the ConfigCat Startup Program

#### Jun 17, 2026
Expand Down
Loading