{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FeatureFlagMultivariateVariantSchema", "title": "FeatureFlagMultivariateVariantSchema", "type": "object", "properties": { "key": { "type": "string", "description": "Unique key for this variant." }, "name": { "type": "string", "description": "Human-readable name for this variant." }, "rollout_percentage": { "type": "number", "format": "double", "description": "Variant rollout percentage." } }, "required": [ "key", "rollout_percentage" ] }