{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ShipVariant", "title": "ShipVariant", "type": "object", "properties": { "conclusion": { "nullable": true, "description": "The conclusion of the experiment.\n\n* `won` - won\n* `lost` - lost\n* `inconclusive` - inconclusive\n* `stopped_early` - stopped_early\n* `invalid` - invalid", "oneOf": [ { "$ref": "#/components/schemas/ConclusionEnum" }, { "$ref": "#/components/schemas/NullEnum" } ] }, "conclusion_comment": { "type": "string", "nullable": true, "description": "Optional comment about the experiment conclusion." }, "variant_key": { "type": "string", "description": "The key of the variant to ship to 100% of users." } }, "required": [ "variant_key" ] }