mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
35 lines
823 B
TypeScript
35 lines
823 B
TypeScript
import { createSchemaObject, CreateSchemaType } from '../types';
|
|
|
|
export const schema = {
|
|
type: 'object',
|
|
additionalProperties: false,
|
|
required: ['name', 'weight', 'weightType', 'stickiness', 'overrides'],
|
|
properties: {
|
|
name: {
|
|
type: 'string',
|
|
},
|
|
weight: {
|
|
type: 'number',
|
|
},
|
|
weightType: {
|
|
type: 'string',
|
|
},
|
|
stickiness: {
|
|
type: 'string',
|
|
},
|
|
payload: {
|
|
type: 'object',
|
|
},
|
|
overrides: {
|
|
type: 'array',
|
|
items: {
|
|
$ref: '#/components/schemas/overrideSchema',
|
|
},
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export type VariantSchema = CreateSchemaType<typeof schema>;
|
|
|
|
export const variantSchema = createSchemaObject(schema);
|