{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FlagVariation",
"title": "FlagVariation",
"type": "object",
"description": "A variation of a feature flag with variable values",
"properties": {
"key": {
"type": "string",
"description": "Unique key for the variation"
},
"name": {
"type": "string",
"description": "Human-readable name of the variation"
},
"variables": {
"type": "object",
"description": "Map of variable keys to their values for this variation",
"additionalProperties": {
"type": "string"
}
}
}
}