unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
26 lines • 664 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.featureTypeSchema = void 0;
exports.featureTypeSchema = {
$id: '#/components/schemas/featureTypeSchema',
type: 'object',
additionalProperties: false,
required: ['id', 'name', 'description', 'lifetimeDays'],
properties: {
id: {
type: 'string',
},
name: {
type: 'string',
},
description: {
type: 'string',
},
lifetimeDays: {
type: 'number',
nullable: true,
},
},
components: {},
};
//# sourceMappingURL=feature-type-schema.js.map