Properties
| Name | Type | Description |
|---|---|---|
| _id | string | The unique identifier of this variation. |
| value | object | The value of this variation. Can be any JSON type. |
| name | string | An optional human-readable name for this variation. |
| description | string | An optional description of this variation. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Variation",
"title": "Variation",
"type": "object",
"description": "A single variation value that a feature flag can serve.",
"properties": {
"_id": {
"type": "string",
"description": "The unique identifier of this variation."
},
"value": {
"description": "The value of this variation. Can be any JSON type."
},
"name": {
"type": "string",
"description": "An optional human-readable name for this variation."
},
"description": {
"type": "string",
"description": "An optional description of this variation."
}
}
}