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