unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
15 lines • 538 B
JavaScript
export const toggleMaintenanceSchema = {
$id: '#/components/schemas/toggleMaintenanceSchema',
type: 'object',
description: 'Data used when to activate or deactivate maintenance mode for Unleash.',
required: ['enabled'],
properties: {
enabled: {
description: '`true` if you want to activate maintenance mode, `false` if you want to deactivate it.',
type: 'boolean',
example: true,
},
},
components: {},
};
//# sourceMappingURL=toggle-maintenance-schema.js.map