import { createSchemaObject, CreateSchemaType } from '../types'; import { overrideSchema } from './override-schema'; const schema = { type: 'object', additionalProperties: false, required: ['name', 'weight', 'weightType', 'stickiness'], properties: { name: { type: 'string', }, weight: { type: 'number', }, weightType: { type: 'string', }, stickiness: { type: 'string', }, payload: { type: 'object', }, overrides: { type: 'array', items: overrideSchema, }, }, } as const; export type VariantSchema = CreateSchemaType; export const variantSchema = createSchemaObject(schema);