Skip to content

Commit 8d7e6b9

Browse files
authored
clarify variant size limits can be increased (#695)
1 parent 52d1529 commit 8d7e6b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/feature-flagging/concepts/flag-variations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Choosing a one variation flag makes the Flag a Boolean type.
2525

2626
String flags are the default for a flag with two or more experiences and is the most common type of flag. They are useful for both A/B/n tests and advanced targeting use cases.
2727

28-
String flags have a limit of 65KB. Strings are UTF-8 encoded, so certain characters, like emojis and non-ASCII characters, take more than one byte each.
28+
String flags have a default limit of 65KB, which can be increased if your team needs more. Strings are UTF-8 encoded, so certain characters, like emojis and non-ASCII characters, take more than one byte each.
2929

3030
You can use escape sequences in string flag values.
3131

@@ -45,6 +45,6 @@ JSON flags allow you to send a map of values. This allows us to include structur
4545

4646
You can write an empty array as `{}` if there is no property value present for a variation.
4747

48-
JSON object and array flags have a size limit of 32KB.
48+
JSON object and array flags have a default size limit of 250KB, which can be increased if your team needs more.
4949

5050
Eppo will show an error message in the UI if a variation value does not validate as proper JSON.

0 commit comments

Comments
 (0)