unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
23 lines • 685 B
JavaScript
export const featureLinkSchema = {
$id: '#/components/schemas/featureLinkSchema',
type: 'object',
required: ['url'],
properties: {
url: {
type: 'string',
example: 'https://github.com/search?q=cleanupReminder&type=code',
description: 'The URL the feature is linked to',
},
title: {
type: 'string',
example: 'Github cleanup',
description: 'The description of the link',
nullable: true,
},
},
description: 'The link to any URL related to the feature',
components: {
schemas: {},
},
};
//# sourceMappingURL=feature-link-schema.js.map