import { createSchemaObject, CreateSchemaType } from '../types'; const schema = { type: 'object', required: ['name', 'replaceGroupId'], properties: { name: { type: 'string', }, replaceGroupId: { type: 'boolean', }, }, 'components/schemas': {}, } as const; export type CloneFeatureSchema = CreateSchemaType; export const cloneFeatureSchema = createSchemaObject(schema);