UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

20 lines 583 B
export const batchFeaturesSchema = { $id: '#/components/schemas/batchFeaturesSchema', type: 'object', description: 'A list of feature flag names for batch operations', required: ['features'], properties: { features: { type: 'array', items: { type: 'string', }, description: 'List of feature flag names', example: ['my-feature-4', 'my-feature-5', 'my-feature-6'], }, }, components: { schemas: {}, }, }; //# sourceMappingURL=batch-features-schema.js.map