mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
f91c8a338a
Update OpenAPI for `/api/admin/projects/{projectId}/features/` and related endpoints --------- Co-authored-by: Thomas Heartman <thomas@getunleash.ai>
34 lines
1023 B
TypeScript
34 lines
1023 B
TypeScript
import { variantSchema } from './variant-schema';
|
|
import { FromSchema } from 'json-schema-to-ts';
|
|
import { overrideSchema } from './override-schema';
|
|
|
|
export const featureVariantsSchema = {
|
|
$id: '#/components/schemas/featureVariantsSchema',
|
|
type: 'object',
|
|
additionalProperties: false,
|
|
required: ['version', 'variants'],
|
|
description: 'A versioned collection of feature toggle variants.',
|
|
properties: {
|
|
version: {
|
|
type: 'integer',
|
|
example: 1,
|
|
description: 'The version of the feature variants schema.',
|
|
},
|
|
variants: {
|
|
type: 'array',
|
|
items: {
|
|
$ref: '#/components/schemas/variantSchema',
|
|
},
|
|
description: 'All variants defined for a specific feature toggle.',
|
|
},
|
|
},
|
|
components: {
|
|
schemas: {
|
|
variantSchema,
|
|
overrideSchema,
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export type FeatureVariantsSchema = FromSchema<typeof featureVariantsSchema>;
|