UNPKG

unleash-server

Version:

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

22 lines 693 B
import { tagSchema } from './tag-schema.js'; export const tagWithVersionSchema = { $id: '#/components/schemas/tagWithVersionSchema', type: 'object', additionalProperties: false, required: ['version', 'tag'], description: 'A tag with a version number representing the schema used to model the tag.', properties: { version: { type: 'integer', description: 'The version of the schema used to model the tag.', example: 1, }, tag: { $ref: '#/components/schemas/tagSchema', }, }, components: { schemas: { tagSchema }, }, }; //# sourceMappingURL=tag-with-version-schema.js.map