unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
22 lines • 633 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.tagWithVersionSchema = void 0;
const tag_schema_1 = require("./tag-schema");
exports.tagWithVersionSchema = {
$id: '#/components/schemas/tagWithVersionSchema',
type: 'object',
additionalProperties: false,
required: ['version', 'tag'],
properties: {
version: {
type: 'integer',
},
tag: {
$ref: '#/components/schemas/tagSchema',
},
},
components: {
schemas: { tagSchema: tag_schema_1.tagSchema },
},
};
//# sourceMappingURL=tag-with-version-schema.js.map